pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.hdkj</groupId>
  7. <artifactId>services</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-job</artifactId>
  12. <description>
  13. ruoyi-modules-job定时任务
  14. </description>
  15. <dependencies>
  16. <!-- Quartz -->
  17. <dependency>
  18. <groupId>org.quartz-scheduler</groupId>
  19. <artifactId>quartz</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>com.mchange</groupId>
  23. <artifactId>c3p0</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- RuoYi Common Log -->
  28. <dependency>
  29. <groupId>com.hdkj</groupId>
  30. <artifactId>ruoyi-common-log</artifactId>
  31. </dependency>
  32. <!-- RuoYi Common Swagger -->
  33. <dependency>
  34. <groupId>com.hdkj</groupId>
  35. <artifactId>ruoyi-common-swagger</artifactId>
  36. </dependency>
  37. <!-- <dependency>-->
  38. <!-- <groupId>com.github.pagehelper</groupId>-->
  39. <!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
  40. <!-- <version>${pagehelper.boot.version}</version>-->
  41. <!-- </dependency>-->
  42. </dependencies>
  43. <!-- <build>-->
  44. <!-- <finalName>${project.artifactId}</finalName>-->
  45. <!-- <plugins>-->
  46. <!-- <plugin>-->
  47. <!-- <groupId>org.springframework.boot</groupId>-->
  48. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  49. <!-- <executions>-->
  50. <!-- <execution>-->
  51. <!-- <goals>-->
  52. <!-- <goal>repackage</goal>-->
  53. <!-- </goals>-->
  54. <!-- </execution>-->
  55. <!-- </executions>-->
  56. <!-- </plugin>-->
  57. <!-- </plugins>-->
  58. <!-- </build>-->
  59. </project>