pom.xml 889 B

12345678910111213141516171819202122232425262728
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.qinys</groupId>
  6. <artifactId>platform-entity</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>platform-entity-wishing</artifactId>
  10. <packaging>jar</packaging>
  11. <name>platform-entity-wishing</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>3.8.1</version>
  20. <scope>test</scope>
  21. </dependency>
  22. </dependencies>
  23. </project>