pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>sc-common</artifactId>
  7. <groupId>com.nantian.cloud</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sc-common-job</artifactId>
  12. <packaging>jar</packaging>
  13. <description>sc 定时任务</description>
  14. <dependencies>
  15. <!-- import elastic-job lite core -->
  16. <dependency>
  17. <groupId>com.dangdang</groupId>
  18. <artifactId>elastic-job-lite-core</artifactId>
  19. <version>${elastic-job-lite.version}</version>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>com.zaxxer</groupId>
  23. <artifactId>HikariCP-java7</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- import other module if need -->
  28. <dependency>
  29. <groupId>com.dangdang</groupId>
  30. <artifactId>elastic-job-lite-spring</artifactId>
  31. <version>${elastic-job-lite.version}</version>
  32. </dependency>
  33. <!--xxl job-->
  34. <dependency>
  35. <groupId>com.xuxueli</groupId>
  36. <artifactId>xxl-job-core</artifactId>
  37. <version>${xxl.job.version}</version>
  38. </dependency>
  39. </dependencies>
  40. </project>