pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ag.ilog</groupId>
  6. <artifactId>AG-ILOG-WMS-3.0</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <modules>
  9. <module>WebplatformModule</module>
  10. <module>ilogWebSystem</module>
  11. <module>ilogBusinessSystem</module>
  12. </modules>
  13. <packaging>pom</packaging>
  14. <name>AG-ILOG-WMS-3.0 Maven Webapp</name>
  15. <!-- FIXME change it to the project's website -->
  16. <url>http://www.example.com</url>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <thymeleaf.version>3.0.0.RELEASE</thymeleaf.version>
  20. <springframework.version>4.2.6.RELEASE</springframework.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>commons-fileupload</groupId>
  25. <artifactId>commons-fileupload</artifactId>
  26. <version>1.3.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-io</groupId>
  30. <artifactId>commons-io</artifactId>
  31. <version>2.4</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus</artifactId>
  36. <version>3.1.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-generator</artifactId>
  41. <version>3.1.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.velocity</groupId>
  45. <artifactId>velocity-engine-core</artifactId>
  46. <version>2.1</version>
  47. </dependency>
  48. <!--连接数据库 -->
  49. <dependency>
  50. <groupId>com.hynnet</groupId>
  51. <artifactId>oracle-driver-ojdbc6</artifactId>
  52. <version>12.1.0.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.freemarker</groupId>
  56. <artifactId>freemarker</artifactId>
  57. <version>2.3.23</version>
  58. </dependency>
  59. <!-- start springframework start -->
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-core</artifactId>
  63. <version>${springframework.version}</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-context</artifactId>
  69. <version>${springframework.version}</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-beans</artifactId>
  75. <version>${springframework.version}</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework</groupId>
  80. <artifactId>spring-aop</artifactId>
  81. <version>${springframework.version}</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>javax.servlet</groupId>
  86. <artifactId>javax.servlet-api</artifactId>
  87. <version>3.1.0</version>
  88. <scope>provided</scope>
  89. </dependency>
  90. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-jdbc</artifactId>
  94. <version>${springframework.version}</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-aspects</artifactId>
  100. <version>${springframework.version}</version>
  101. <scope>compile</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework</groupId>
  105. <artifactId>spring-expression</artifactId>
  106. <version>${springframework.version}</version>
  107. <scope>compile</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-web</artifactId>
  112. <version>${springframework.version}</version>
  113. <scope>compile</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework</groupId>
  117. <artifactId>spring-webmvc</artifactId>
  118. <version>${springframework.version}</version>
  119. <scope>compile</scope>
  120. </dependency>
  121. <!-- end springframework end -->
  122. </dependencies>
  123. <build>
  124. <finalName>AG-ILOG-WMS-3.0</finalName>
  125. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  126. <plugins>
  127. <plugin>
  128. <artifactId>maven-clean-plugin</artifactId>
  129. <version>3.1.0</version>
  130. </plugin>
  131. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  132. <plugin>
  133. <artifactId>maven-resources-plugin</artifactId>
  134. <version>3.0.2</version>
  135. </plugin>
  136. <plugin>
  137. <artifactId>maven-compiler-plugin</artifactId>
  138. <version>3.8.0</version>
  139. </plugin>
  140. <plugin>
  141. <artifactId>maven-surefire-plugin</artifactId>
  142. <version>2.22.1</version>
  143. </plugin>
  144. <plugin>
  145. <artifactId>maven-war-plugin</artifactId>
  146. <version>3.2.2</version>
  147. </plugin>
  148. <plugin>
  149. <artifactId>maven-install-plugin</artifactId>
  150. <version>2.5.2</version>
  151. </plugin>
  152. <plugin>
  153. <artifactId>maven-deploy-plugin</artifactId>
  154. <version>2.8.2</version>
  155. </plugin>
  156. </plugins>
  157. </pluginManagement>
  158. </build>
  159. </project>