pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <parent>
  4. <artifactId>cms</artifactId>
  5. <groupId>com.zheng</groupId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>cms-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>cms-service</name>
  12. <url>http://www.zhangshuzheng.cn</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.12</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.zheng</groupId>
  25. <artifactId>cms-dao</artifactId>
  26. <version>1.0.0</version>
  27. <type>jar</type>
  28. </dependency>
  29. <!-- servlet -->
  30. <dependency>
  31. <groupId>javax.servlet</groupId>
  32. <artifactId>servlet-api</artifactId>
  33. <version>2.5</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>cms-service</finalName>
  39. <resources>
  40. <resource>
  41. <directory>src/main/java</directory>
  42. <includes>
  43. <include>**/*.xml</include>
  44. </includes>
  45. <filtering>true</filtering>
  46. </resource>
  47. <resource>
  48. <directory>src/main/resources</directory>
  49. </resource>
  50. </resources>
  51. </build>
  52. </project>