pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>usky-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. <dependency>
  43. <groupId>com.usky</groupId>
  44. <artifactId>service-fire-api</artifactId>
  45. <version>0.0.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.usky</groupId>
  49. <artifactId>ruoyi-common-swagger</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.usky</groupId>
  53. <artifactId>service-iot-api</artifactId>
  54. <version>0.0.1</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.usky</groupId>
  59. <artifactId>service-meeting-api</artifactId>
  60. <version>0.0.1</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <finalName>${project.artifactId}</finalName>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. <version>2.2.6.RELEASE</version>
  71. <executions>
  72. <execution>
  73. <goals>
  74. <goal>repackage</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>