pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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.7.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. </plugin>
  71. <plugin>
  72. <groupId>com.spotify</groupId>
  73. <artifactId>docker-maven-plugin</artifactId>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>