pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-client</artifactId>
  10. <version>1.3.1</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.9.v20130131</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. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <version>3.1</version>
  63. <configuration>
  64. <source>1.6</source>
  65. <target>1.6</target>
  66. <encoding>UTF8</encoding>
  67. </configuration>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-surefire-plugin</artifactId>
  72. <version>2.19.1</version>
  73. <configuration>
  74. <skip>true</skip>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>