pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. <parent>
  5. <groupId>com.xxl</groupId>
  6. <artifactId>xxl-job</artifactId>
  7. <version>1.3.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>xxl-job-admin</artifactId>
  10. <version>1.3.1-SNAPSHOT</version>
  11. <packaging>war</packaging>
  12. <properties>
  13. <spring.version>3.2.14.RELEASE</spring.version>
  14. </properties>
  15. <dependencies>
  16. <!-- springframe start -->
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-webmvc</artifactId>
  20. <version>${spring.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-context-support</artifactId>
  25. <version>${spring.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-orm</artifactId>
  30. <version>${spring.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-test</artifactId>
  35. <version>${spring.version}</version>
  36. </dependency>
  37. <!-- springframe end -->
  38. <!-- aspectjweaver (support spring aop) -->
  39. <dependency>
  40. <groupId>org.aspectj</groupId>
  41. <artifactId>aspectjweaver</artifactId>
  42. <version>1.8.7</version>
  43. </dependency>
  44. <!-- jackson (support spring json) -->
  45. <dependency>
  46. <groupId>org.codehaus.jackson</groupId>
  47. <artifactId>jackson-mapper-asl</artifactId>
  48. <version>1.9.13</version>
  49. </dependency>
  50. <!-- slf4j -->
  51. <dependency>
  52. <groupId>org.slf4j</groupId>
  53. <artifactId>slf4j-log4j12</artifactId>
  54. <version>1.7.5</version>
  55. </dependency>
  56. <!-- freemarker -->
  57. <dependency>
  58. <groupId>org.freemarker</groupId>
  59. <artifactId>freemarker</artifactId>
  60. <version>2.3.20</version>
  61. </dependency>
  62. <!-- commons-beanutils -->
  63. <dependency>
  64. <groupId>commons-beanutils</groupId>
  65. <artifactId>commons-beanutils</artifactId>
  66. <version>1.9.2</version>
  67. </dependency>
  68. <!-- commons-lang -->
  69. <dependency>
  70. <groupId>commons-lang</groupId>
  71. <artifactId>commons-lang</artifactId>
  72. <version>2.6</version>
  73. </dependency>
  74. <!-- servlet -->
  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.jsp</groupId>
  83. <artifactId>jsp-api</artifactId>
  84. <version>2.1</version>
  85. <scope>provided</scope>
  86. </dependency>
  87. <!-- junit -->
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. <version>4.11</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <!-- c3p0 -->
  95. <dependency>
  96. <groupId>c3p0</groupId>
  97. <artifactId>c3p0</artifactId>
  98. <version>0.9.1.2</version>
  99. </dependency>
  100. <!-- mybatis-spring -->
  101. <dependency>
  102. <groupId>org.mybatis</groupId>
  103. <artifactId>mybatis-spring</artifactId>
  104. <version>1.2.2</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.mybatis</groupId>
  108. <artifactId>mybatis</artifactId>
  109. <version>3.2.8</version>
  110. </dependency>
  111. <!-- mysql-connector -->
  112. <dependency>
  113. <groupId>mysql</groupId>
  114. <artifactId>mysql-connector-java</artifactId>
  115. <version>5.1.29</version>
  116. </dependency>
  117. <!-- httpclient -->
  118. <dependency>
  119. <groupId>org.apache.httpcomponents</groupId>
  120. <artifactId>httpclient</artifactId>
  121. <version>4.3.6</version>
  122. </dependency>
  123. <!-- javax.mail -->
  124. <dependency>
  125. <groupId>javax.mail</groupId>
  126. <artifactId>mail</artifactId>
  127. <version>1.4.6</version>
  128. </dependency>
  129. <!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
  130. <dependency>
  131. <groupId>org.quartz-scheduler</groupId>
  132. <artifactId>quartz</artifactId>
  133. <version>2.2.3</version>
  134. </dependency>
  135. <!-- xxl-job-core -->
  136. <dependency>
  137. <groupId>com.xxl</groupId>
  138. <artifactId>xxl-job-core</artifactId>
  139. <version>1.3.2</version>
  140. </dependency>
  141. </dependencies>
  142. <build>
  143. <plugins>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-compiler-plugin</artifactId>
  147. <version>3.1</version>
  148. <configuration>
  149. <source>1.6</source>
  150. <target>1.6</target>
  151. <encoding>UTF8</encoding>
  152. </configuration>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-war-plugin</artifactId>
  157. <version>2.2</version>
  158. <configuration>
  159. <archiveClasses>true</archiveClasses>
  160. </configuration>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-surefire-plugin</artifactId>
  165. <version>2.19.1</version>
  166. <configuration>
  167. <skip>true</skip>
  168. </configuration>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. </project>