pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. </dependencies>
  38. <!-- <build>-->
  39. <!-- <finalName>${project.artifactId}</finalName>-->
  40. <!-- <plugins>-->
  41. <!-- <plugin>-->
  42. <!-- <groupId>org.springframework.boot</groupId>-->
  43. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  44. <!-- <executions>-->
  45. <!-- <execution>-->
  46. <!-- <goals>-->
  47. <!-- <goal>repackage</goal>-->
  48. <!-- </goals>-->
  49. <!-- </execution>-->
  50. <!-- </executions>-->
  51. <!-- </plugin>-->
  52. <!-- </plugins>-->
  53. <!-- </build>-->
  54. </project>