.flattened-pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jt.cloud</groupId>
  6. <artifactId>jt-spring-boot-starter-job</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-spring-boot-starter-job</name>
  9. <description>任务拓展,基于 XXL-Job 实现</description>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.jt.cloud</groupId>
  13. <artifactId>jt-common</artifactId>
  14. <version>2.6.1-SNAPSHOT</version>
  15. <scope>compile</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-configuration-processor</artifactId>
  20. <version>3.4.5</version>
  21. <scope>compile</scope>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. <version>3.4.5</version>
  28. <scope>compile</scope>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.xuxueli</groupId>
  33. <artifactId>xxl-job-core</artifactId>
  34. <version>2.4.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>jakarta.validation</groupId>
  39. <artifactId>jakarta.validation-api</artifactId>
  40. <version>3.0.2</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. </dependencies>
  44. <repositories>
  45. <repository>
  46. <id>huaweicloud</id>
  47. <name>huawei</name>
  48. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  49. </repository>
  50. <repository>
  51. <id>aliyunmaven</id>
  52. <name>aliyun</name>
  53. <url>https://maven.aliyun.com/repository/public</url>
  54. </repository>
  55. <repository>
  56. <snapshots>
  57. <enabled>false</enabled>
  58. </snapshots>
  59. <id>spring-milestones</id>
  60. <name>Spring Milestones</name>
  61. <url>https://repo.spring.io/milestone</url>
  62. </repository>
  63. <repository>
  64. <releases>
  65. <enabled>false</enabled>
  66. </releases>
  67. <id>spring-snapshots</id>
  68. <name>Spring Snapshots</name>
  69. <url>https://repo.spring.io/snapshot</url>
  70. </repository>
  71. </repositories>
  72. </project>