pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>xxl-job-pg</artifactId>
  7. <groupId>org.poem</groupId>
  8. <version>2.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xxl-job-core-pg</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.apache.commons</groupId>
  15. <artifactId>commons-lang3</artifactId>
  16. <version>${commons-lang3.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.commons</groupId>
  20. <artifactId>commons-pool2</artifactId>
  21. <version>${commons-pool2.version}</version>
  22. </dependency>
  23. <!-- ********************** embed server: netty + gson ********************** -->
  24. <dependency>
  25. <groupId>io.netty</groupId>
  26. <artifactId>netty-all</artifactId>
  27. <version>${netty-all.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.google.code.gson</groupId>
  31. <artifactId>gson</artifactId>
  32. <version>${gson.version}</version>
  33. </dependency>
  34. <!-- ********************** plugin ********************** -->
  35. <!-- groovy-all -->
  36. <dependency>
  37. <groupId>org.codehaus.groovy</groupId>
  38. <artifactId>groovy</artifactId>
  39. <version>${groovy.version}</version>
  40. </dependency>
  41. <!-- spring-context -->
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-context</artifactId>
  45. <version>${spring.version}</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <!-- ********************** base ********************** -->
  49. <!-- slf4j -->
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-api</artifactId>
  53. <version>${slf4j-api.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-log4j12</artifactId>
  58. <version>${slf4j-api.version}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <!-- junit -->
  62. <dependency>
  63. <groupId>junit</groupId>
  64. <artifactId>junit</artifactId>
  65. <version>${junit.version}</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <!-- javax.annotation-api -->
  69. <dependency>
  70. <groupId>javax.annotation</groupId>
  71. <artifactId>javax.annotation-api</artifactId>
  72. <version>${javax.annotation-api.version}</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>