pom.xml 893 B

12345678910111213141516171819202122232425262728293031
  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>com.yonge.cooleshow</groupId>
  6. <artifactId>cooleshow</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <groupId>com.yonge.cooleshow</groupId>
  10. <artifactId>cooleshow-cms</artifactId>
  11. <version>1.0</version>
  12. <packaging>jar</packaging>
  13. <name>cooleshow-cms</name>
  14. <url>http://maven.apache.org</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <version>3.8.1</version>
  23. <scope>test</scope>
  24. </dependency>
  25. </dependencies>
  26. </project>