pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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>pig-visual</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pig-quartz</artifactId>
  12. <packaging>jar</packaging>
  13. <description>基于quartz后台定时任务模块</description>
  14. <dependencies>
  15. <!--注册中心客户端-->
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  19. </dependency>
  20. <!--配置中心客户端-->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  24. </dependency>
  25. <!--日志处理-->
  26. <dependency>
  27. <groupId>com.pig4cloud</groupId>
  28. <artifactId>pig-common-log</artifactId>
  29. </dependency>
  30. <!--feign 处理-->
  31. <dependency>
  32. <groupId>com.pig4cloud</groupId>
  33. <artifactId>pig-common-feign</artifactId>
  34. </dependency>
  35. <!--mybatis-->
  36. <dependency>
  37. <groupId>com.pig4cloud</groupId>
  38. <artifactId>pig-common-mybatis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  43. </dependency>
  44. <!--数据库-->
  45. <dependency>
  46. <groupId>com.mysql</groupId>
  47. <artifactId>mysql-connector-j</artifactId>
  48. </dependency>
  49. <!--swagger-->
  50. <dependency>
  51. <groupId>com.pig4cloud</groupId>
  52. <artifactId>pig-common-swagger</artifactId>
  53. </dependency>
  54. <!--spring security 、oauth、jwt依赖-->
  55. <dependency>
  56. <groupId>com.pig4cloud</groupId>
  57. <artifactId>pig-common-security</artifactId>
  58. </dependency>
  59. <!-- quartz 模块 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-quartz</artifactId>
  63. </dependency>
  64. <!--web 模块-->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </dependency>
  69. <!--undertow容器-->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-undertow</artifactId>
  73. </dependency>
  74. </dependencies>
  75. <profiles>
  76. <profile>
  77. <id>boot</id>
  78. </profile>
  79. <profile>
  80. <id>cloud</id>
  81. <activation>
  82. <!-- 默认环境 -->
  83. <activeByDefault>true</activeByDefault>
  84. </activation>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. </plugin>
  91. <plugin>
  92. <groupId>io.fabric8</groupId>
  93. <artifactId>docker-maven-plugin</artifactId>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </profile>
  98. </profiles>
  99. </project>