pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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-executor-example</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. <!-- slf4j -->
  45. <dependency>
  46. <groupId>org.slf4j</groupId>
  47. <artifactId>slf4j-log4j12</artifactId>
  48. <version>1.7.5</version>
  49. </dependency>
  50. <!-- c3p0 -->
  51. <dependency>
  52. <groupId>c3p0</groupId>
  53. <artifactId>c3p0</artifactId>
  54. <version>0.9.1.2</version>
  55. </dependency>
  56. <!-- mybatis-spring -->
  57. <dependency>
  58. <groupId>org.mybatis</groupId>
  59. <artifactId>mybatis-spring</artifactId>
  60. <version>1.2.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.mybatis</groupId>
  64. <artifactId>mybatis</artifactId>
  65. <version>3.2.8</version>
  66. </dependency>
  67. <!-- mysql-connector -->
  68. <dependency>
  69. <groupId>mysql</groupId>
  70. <artifactId>mysql-connector-java</artifactId>
  71. <version>5.1.29</version>
  72. </dependency>
  73. <!-- xxl-job-core -->
  74. <dependency>
  75. <groupId>com.xxl</groupId>
  76. <artifactId>xxl-job-core</artifactId>
  77. <version>1.3.2</version>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <version>3.1</version>
  86. <configuration>
  87. <source>1.6</source>
  88. <target>1.6</target>
  89. <encoding>UTF8</encoding>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-war-plugin</artifactId>
  95. <version>2.2</version>
  96. <configuration>
  97. <archiveClasses>true</archiveClasses>
  98. </configuration>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-surefire-plugin</artifactId>
  103. <version>2.19.1</version>
  104. <configuration>
  105. <skip>true</skip>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>