pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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-core</artifactId>
  10. <version>1.3.2</version>
  11. <dependencies>
  12. <!-- servlet -->
  13. <dependency>
  14. <groupId>javax.servlet</groupId>
  15. <artifactId>servlet-api</artifactId>
  16. <version>2.5</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>javax.servlet.jsp</groupId>
  21. <artifactId>jsp-api</artifactId>
  22. <version>2.1</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <!-- jetty -->
  26. <dependency>
  27. <groupId>org.eclipse.jetty</groupId>
  28. <artifactId>jetty-server</artifactId>
  29. <version>7.6.19.v20160209</version>
  30. </dependency>
  31. <!-- slf4j -->
  32. <dependency>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-log4j12</artifactId>
  35. <version>1.7.5</version>
  36. </dependency>
  37. <!-- jackson -->
  38. <dependency>
  39. <groupId>org.codehaus.jackson</groupId>
  40. <artifactId>jackson-mapper-asl</artifactId>
  41. <version>1.9.13</version>
  42. </dependency>
  43. <!-- httpclient -->
  44. <dependency>
  45. <groupId>org.apache.httpcomponents</groupId>
  46. <artifactId>httpclient</artifactId>
  47. <version>4.3.6</version>
  48. </dependency>
  49. <!-- spring-context -->
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context</artifactId>
  53. <version>3.2.14.RELEASE</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <!-- groovy-all -->
  57. <dependency>
  58. <groupId>org.codehaus.groovy</groupId>
  59. <artifactId>groovy-all</artifactId>
  60. <version>2.4.5</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <version>3.1</version>
  69. <configuration>
  70. <source>1.6</source>
  71. <target>1.6</target>
  72. <encoding>UTF8</encoding>
  73. </configuration>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-surefire-plugin</artifactId>
  78. <version>2.19.1</version>
  79. <configuration>
  80. <skip>true</skip>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>