pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.pig4cloud</groupId>
  7. <artifactId>pigx-visual</artifactId>
  8. <version>2.6.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pigx-daemon-quartz</artifactId>
  12. <packaging>jar</packaging>
  13. <description>基于quartz后台跑批定时任务模块</description>
  14. <dependencies>
  15. <!--配置中心客户端-->
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-config</artifactId>
  19. </dependency>
  20. <!--日志处理-->
  21. <dependency>
  22. <groupId>com.pig4cloud</groupId>
  23. <artifactId>pigx-common-log</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.pig4cloud</groupId>
  27. <artifactId>pigx-common-data</artifactId>
  28. </dependency>
  29. <!--mybatis-->
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-boot-starter</artifactId>
  33. </dependency>
  34. <!--数据库-->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <!--swagger-->
  40. <dependency>
  41. <groupId>com.pig4cloud</groupId>
  42. <artifactId>pigx-common-swagger</artifactId>
  43. </dependency>
  44. <!--spring security 、oauth、jwt依赖-->
  45. <dependency>
  46. <groupId>com.pig4cloud</groupId>
  47. <artifactId>pigx-common-security</artifactId>
  48. </dependency>
  49. <!--web 模块-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-web</artifactId>
  53. </dependency>
  54. <!--undertow容器-->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-undertow</artifactId>
  58. </dependency>
  59. <!-- quartz 模块 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-quartz</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. <configuration>
  71. <mainClass>com.company.platform.frwcloud.job.FrwcloudJobApplication</mainClass>
  72. </configuration>
  73. <executions>
  74. <execution>
  75. <goals>
  76. <goal>repackage</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <plugin>
  82. <groupId>com.spotify</groupId>
  83. <artifactId>docker-maven-plugin</artifactId>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>