pom.xml 6.7 KB

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