pom.xml 7.5 KB

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