pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>xxl-job-core-pg</module>
  8. <module>xxl-job-admin-pg</module>
  9. <module>xxl-job-springboot-example</module>
  10. </modules>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.3.4.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <groupId>org.poem</groupId>
  18. <artifactId>xxl-job-pg</artifactId>
  19. <version>2.2.0</version>
  20. <name>xxl-job-pg</name>
  21. <description>Demo project for Spring Boot</description>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <java.version>1.8</java.version>
  26. <maven.compiler.source>1.8</maven.compiler.source>
  27. <maven.compiler.target>1.8</maven.compiler.target>
  28. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  29. <maven.test.skip>true</maven.test.skip>
  30. <netty-all.version>4.1.50.Final</netty-all.version>
  31. <gson.version>2.8.6</gson.version>
  32. <spring.version>5.2.7.RELEASE</spring.version>
  33. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  34. <mybatis-spring-boot-starter.version>2.1.3</mybatis-spring-boot-starter.version>
  35. <postgresql.version>42.2.5</postgresql.version>
  36. <slf4j-api.version>1.7.30</slf4j-api.version>
  37. <junit.version>4.13</junit.version>
  38. <javax.annotation-api.version>1.3.2</javax.annotation-api.version>
  39. <groovy.version>3.0.4</groovy.version>
  40. <maven-source-plugin.version>3.1.1</maven-source-plugin.version>
  41. <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
  42. <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
  43. <maven-war-plugin.version>3.3.0</maven-war-plugin.version>
  44. <commons-lang3.version>3.8.1</commons-lang3.version>
  45. <commons-pool.version>1.6</commons-pool.version>
  46. <commons-pool2.version>2.6.1</commons-pool2.version>
  47. </properties>
  48. <dependencies>
  49. <dependency>
  50. <groupId>org.postgresql</groupId>
  51. <artifactId>postgresql</artifactId>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>mysql</groupId>
  56. <artifactId>mysql-connector-java</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>