pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.usky</groupId>
  7. <artifactId>base-modules</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-job</artifactId>
  12. <description>
  13. service-job定时任务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.usky</groupId>
  18. <artifactId>common-cloud-starter</artifactId>
  19. </dependency>
  20. <!-- Swagger UI -->
  21. <dependency>
  22. <groupId>io.springfox</groupId>
  23. <artifactId>springfox-swagger-ui</artifactId>
  24. <version>${swagger.fox.version}</version>
  25. </dependency>
  26. <!-- Quartz -->
  27. <dependency>
  28. <groupId>org.quartz-scheduler</groupId>
  29. <artifactId>quartz</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>com.mchange</groupId>
  33. <artifactId>c3p0</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.xml.bind</groupId>
  39. <artifactId>jaxb-api</artifactId>
  40. <version>2.3.1</version>
  41. </dependency>
  42. <!-- &lt;!&ndash; RuoYi Common Log &ndash;&gt;-->
  43. <!-- <dependency>-->
  44. <!-- <groupId>com.usky</groupId>-->
  45. <!-- <artifactId>ruoyi-common-log</artifactId>-->
  46. <!-- </dependency>-->
  47. <!-- &lt;!&ndash; RuoYi Common Swagger &ndash;&gt;-->
  48. <dependency>
  49. <groupId>com.usky</groupId>
  50. <artifactId>ruoyi-common-swagger</artifactId>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <finalName>${project.artifactId}</finalName>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. <version>2.2.6.RELEASE</version>
  60. <executions>
  61. <execution>
  62. <goals>
  63. <goal>repackage</goal>
  64. </goals>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>