pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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.xuxueli</groupId>
  6. <artifactId>xxl-job</artifactId>
  7. <version>${xxl-job.version}</version>
  8. </parent>
  9. <artifactId>xxl-job-executor-example</artifactId>
  10. <version>${xxl-job.version}</version>
  11. <packaging>war</packaging>
  12. <properties>
  13. <xxl-job.version>1.4.1</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. <!-- slf4j -->
  46. <dependency>
  47. <groupId>org.slf4j</groupId>
  48. <artifactId>slf4j-log4j12</artifactId>
  49. <version>1.7.5</version>
  50. </dependency>
  51. <!-- c3p0 -->
  52. <dependency>
  53. <groupId>c3p0</groupId>
  54. <artifactId>c3p0</artifactId>
  55. <version>0.9.1.2</version>
  56. </dependency>
  57. <!-- mybatis-spring -->
  58. <dependency>
  59. <groupId>org.mybatis</groupId>
  60. <artifactId>mybatis-spring</artifactId>
  61. <version>1.2.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.mybatis</groupId>
  65. <artifactId>mybatis</artifactId>
  66. <version>3.2.8</version>
  67. </dependency>
  68. <!-- mysql-connector -->
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. <version>5.1.29</version>
  73. </dependency>
  74. <!-- xxl-job-core -->
  75. <dependency>
  76. <groupId>com.xuxueli</groupId>
  77. <artifactId>xxl-job-core</artifactId>
  78. <version>${xxl-job.version}</version>
  79. </dependency>
  80. </dependencies>
  81. </project>