pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <groupId>com.zheng</groupId>
  5. <artifactId>zheng-cms</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>pom</packaging>
  8. <name>zheng-cms</name>
  9. <url>http://www.zhangshuzheng.cn</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.7</maven.compiler.source>
  13. <maven.compiler.target>1.7</maven.compiler.target>
  14. <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
  15. </properties>
  16. <modules>
  17. <module>zheng-cms-dao</module>
  18. <module>zheng-cms-rpc-api</module>
  19. <module>zheng-cms-rpc-service</module>
  20. <module>zheng-cms-web</module>
  21. <module>zheng-cms-job</module>
  22. <module>zheng-cms-search</module>
  23. <module>zheng-cms-admin</module>
  24. <module>zheng-cms-common</module>
  25. </modules>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.zheng</groupId>
  30. <artifactId>zheng-cms-common</artifactId>
  31. <version>1.0.0</version>
  32. <type>jar</type>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.zheng</groupId>
  36. <artifactId>zheng-cms-dao</artifactId>
  37. <version>${project.version}</version>
  38. <type>jar</type>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>4.12</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>servlet-api</artifactId>
  49. <version>2.5</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>javax.servlet</groupId>
  54. <artifactId>jstl</artifactId>
  55. <version>1.2</version>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. </project>