pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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>${xxl-job.version}</version>
  8. </parent>
  9. <artifactId>xxl-job-admin</artifactId>
  10. <version>${xxl-job.version}</version>
  11. <packaging>war</packaging>
  12. <properties>
  13. <xxl-job.version>1.4.0</xxl-job.version>
  14. <spring.version>3.2.14.RELEASE</spring.version>
  15. </properties>
  16. <dependencies>
  17. <!-- springframe start -->
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-webmvc</artifactId>
  21. <version>${spring.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-context-support</artifactId>
  26. <version>${spring.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-orm</artifactId>
  31. <version>${spring.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-test</artifactId>
  36. <version>${spring.version}</version>
  37. </dependency>
  38. <!-- springframe end -->
  39. <!-- aspectjweaver (support spring aop) -->
  40. <dependency>
  41. <groupId>org.aspectj</groupId>
  42. <artifactId>aspectjweaver</artifactId>
  43. <version>1.8.7</version>
  44. </dependency>
  45. <!-- jackson (support spring json) -->
  46. <dependency>
  47. <groupId>org.codehaus.jackson</groupId>
  48. <artifactId>jackson-mapper-asl</artifactId>
  49. <version>1.9.13</version>
  50. </dependency>
  51. <!-- slf4j -->
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-log4j12</artifactId>
  55. <version>1.7.5</version>
  56. </dependency>
  57. <!-- freemarker -->
  58. <dependency>
  59. <groupId>org.freemarker</groupId>
  60. <artifactId>freemarker</artifactId>
  61. <version>2.3.20</version>
  62. </dependency>
  63. <!-- commons-beanutils -->
  64. <dependency>
  65. <groupId>commons-beanutils</groupId>
  66. <artifactId>commons-beanutils</artifactId>
  67. <version>1.9.2</version>
  68. </dependency>
  69. <!-- commons-lang -->
  70. <dependency>
  71. <groupId>commons-lang</groupId>
  72. <artifactId>commons-lang</artifactId>
  73. <version>2.6</version>
  74. </dependency>
  75. <!-- servlet -->
  76. <dependency>
  77. <groupId>javax.servlet</groupId>
  78. <artifactId>servlet-api</artifactId>
  79. <version>2.5</version>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>javax.servlet.jsp</groupId>
  84. <artifactId>jsp-api</artifactId>
  85. <version>2.1</version>
  86. <scope>provided</scope>
  87. </dependency>
  88. <!-- junit -->
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <version>4.11</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <!-- c3p0 -->
  96. <dependency>
  97. <groupId>c3p0</groupId>
  98. <artifactId>c3p0</artifactId>
  99. <version>0.9.1.2</version>
  100. </dependency>
  101. <!-- mybatis-spring -->
  102. <dependency>
  103. <groupId>org.mybatis</groupId>
  104. <artifactId>mybatis-spring</artifactId>
  105. <version>1.2.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.mybatis</groupId>
  109. <artifactId>mybatis</artifactId>
  110. <version>3.2.8</version>
  111. </dependency>
  112. <!-- mysql-connector -->
  113. <dependency>
  114. <groupId>mysql</groupId>
  115. <artifactId>mysql-connector-java</artifactId>
  116. <version>5.1.29</version>
  117. </dependency>
  118. <!-- httpclient -->
  119. <dependency>
  120. <groupId>org.apache.httpcomponents</groupId>
  121. <artifactId>httpclient</artifactId>
  122. <version>4.3.6</version>
  123. </dependency>
  124. <!-- javax.mail -->
  125. <dependency>
  126. <groupId>javax.mail</groupId>
  127. <artifactId>mail</artifactId>
  128. <version>1.4.6</version>
  129. </dependency>
  130. <!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
  131. <dependency>
  132. <groupId>org.quartz-scheduler</groupId>
  133. <artifactId>quartz</artifactId>
  134. <version>2.2.3</version>
  135. </dependency>
  136. <!-- xxl-job-core -->
  137. <dependency>
  138. <groupId>com.xxl</groupId>
  139. <artifactId>xxl-job-core</artifactId>
  140. <version>${xxl-job.version}</version>
  141. </dependency>
  142. </dependencies>
  143. </project>