pom.xml 4.1 KB

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