pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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.xt.js.gkaq</groupId>
  5. <artifactId>gkaq-bom</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <properties>
  8. <packaging>pom</packaging>
  9. <project.build.sourceEncoding>GBK</project.build.sourceEncoding>
  10. <!-- java 版本 -->
  11. <jdk.version>1.7</jdk.version>
  12. <spring.version>4.3.2.RELEASE</spring.version>
  13. <shiro.version>1.3.1</shiro.version>
  14. <activiti.version>5.20.0</activiti.version>
  15. <junit.version>4.12</junit.version>
  16. <poi.version>3.9</poi.version>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-webmvc</artifactId>
  23. <version>${spring.version}</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-test</artifactId>
  29. <version>${spring.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-context</artifactId>
  35. <version>${spring.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-jdbc</artifactId>
  40. <version>${spring.version}</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-context-support</artifactId>
  46. <version>${spring.version}</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-core</artifactId>
  52. <version>${spring.version}</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-log4j12</artifactId>
  58. <version>1.7.12</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>druid</artifactId>
  64. <version>1.0.24</version>
  65. </dependency>
  66. <!-- mybatis分页插件 -->
  67. <dependency>
  68. <groupId>com.yuanxd.tools</groupId>
  69. <artifactId>x-tools-pagehelper</artifactId>
  70. <version>0.0.1-SNAPSHOT</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mybatis</groupId>
  74. <artifactId>mybatis-spring</artifactId>
  75. <version>1.2.3</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.mybatis</groupId>
  80. <artifactId>mybatis</artifactId>
  81. <version>3.3.0</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>javax.servlet</groupId>
  86. <artifactId>servlet-api</artifactId>
  87. <version>2.5</version>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.servlet</groupId>
  92. <artifactId>jstl</artifactId>
  93. <version>1.2</version>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>taglibs</groupId>
  98. <artifactId>standard</artifactId>
  99. <version>1.1.2</version>
  100. <scope>provided</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>javax.servlet.jsp</groupId>
  104. <artifactId>jsp-api</artifactId>
  105. <version>2.2</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.fasterxml.jackson.core</groupId>
  110. <artifactId>jackson-core</artifactId>
  111. <version>2.6.0</version>
  112. <scope>compile</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.fasterxml.jackson.core</groupId>
  116. <artifactId>jackson-databind</artifactId>
  117. <version>2.6.0</version>
  118. <scope>compile</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>fastjson</artifactId>
  123. <version>1.2.6</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.aspectj</groupId>
  127. <artifactId>aspectjrt</artifactId>
  128. <version>1.8.5</version>
  129. <scope>compile</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.aspectj</groupId>
  133. <artifactId>aspectjweaver</artifactId>
  134. <version>1.8.5</version>
  135. <scope>compile</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.oracle</groupId>
  139. <artifactId>ojdbc6</artifactId>
  140. <version>11.2.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.h2database</groupId>
  144. <artifactId>h2</artifactId>
  145. <version>1.4.192</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.quartz-scheduler</groupId>
  149. <artifactId>quartz</artifactId>
  150. <version>2.2.3</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.yuanxd.tools</groupId>
  154. <artifactId>x-tools-io</artifactId>
  155. <version>1.0-SNAPSHOT</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.yuanxd.tools</groupId>
  159. <artifactId>x-tools-utils</artifactId>
  160. <version>1.0-SNAPSHOT</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.shiro</groupId>
  164. <artifactId>shiro-core</artifactId>
  165. <version>${shiro.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.shiro</groupId>
  169. <artifactId>shiro-spring</artifactId>
  170. <version>${shiro.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.shiro</groupId>
  174. <artifactId>shiro-web</artifactId>
  175. <version>${shiro.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.shiro</groupId>
  179. <artifactId>shiro-ehcache</artifactId>
  180. <version>${shiro.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.xt.js.gkaq</groupId>
  184. <artifactId>gkaq-aqsp</artifactId>
  185. <version>0.0.1-SNAPSHOT</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.xt.js.gkaq</groupId>
  189. <artifactId>gkaq-dwxx</artifactId>
  190. <version>0.0.1-SNAPSHOT</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.xt.js.gkaq</groupId>
  194. <artifactId>gkaq-zcdc</artifactId>
  195. <version>0.0.1-SNAPSHOT</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.xt.js.gkaq</groupId>
  199. <artifactId>gkaq-frame</artifactId>
  200. <version>0.0.1-SNAPSHOT</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>com.xt.js.gkaq</groupId>
  204. <artifactId>gkaq-common</artifactId>
  205. <version>0.0.1-SNAPSHOT</version>
  206. </dependency>
  207. <!-- 工作流 -->
  208. <dependency>
  209. <groupId>org.activiti</groupId>
  210. <artifactId>activiti-engine</artifactId>
  211. <version>${activiti.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.activiti</groupId>
  215. <artifactId>activiti-spring</artifactId>
  216. <version>${activiti.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>junit</groupId>
  220. <artifactId>junit</artifactId>
  221. <version>${junit.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.apache.poi</groupId>
  225. <artifactId>poi</artifactId>
  226. <version>${poi.version}</version>
  227. </dependency>
  228. </dependencies>
  229. </dependencyManagement>
  230. <distributionManagement>
  231. <repository>
  232. <id>xt-repository</id>
  233. <name>xt Repository</name>
  234. <url>${deploy.url}</url>
  235. </repository>
  236. <snapshotRepository>
  237. <id>xt-repository-snapshots</id>
  238. <name>xt Repository Snapshots</name>
  239. <url>${deploy.snapshots.url}</url>
  240. </snapshotRepository>
  241. </distributionManagement>
  242. <build>
  243. <!-- 插件配置 -->
  244. <pluginManagement>
  245. <plugins>
  246. <!-- compiler插件, 设定JDK版本 -->
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-compiler-plugin</artifactId>
  250. <version>3.0</version>
  251. <configuration>
  252. <source>${jdk.version}</source>
  253. <target>${jdk.version}</target>
  254. <showWarnings>true</showWarnings>
  255. </configuration>
  256. </plugin>
  257. </plugins>
  258. </pluginManagement>
  259. </build>
  260. <packaging>pom</packaging>
  261. </project>