pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.jmcloud</groupId>
  7. <artifactId>scis-visual</artifactId>
  8. <version>3.10.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>scis-daemon-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.jmcloud</groupId>
  28. <artifactId>scis-common-log</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.jmcloud</groupId>
  32. <artifactId>scis-common-data</artifactId>
  33. </dependency>
  34. <!--mybatis-->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. </dependency>
  39. <!--数据库-->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <!-- druid 连接池 -->
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>druid-spring-boot-starter</artifactId>
  48. </dependency>
  49. <!--swagger-->
  50. <dependency>
  51. <groupId>com.jmcloud</groupId>
  52. <artifactId>scis-common-swagger</artifactId>
  53. </dependency>
  54. <!--spring security 、oauth、jwt依赖-->
  55. <dependency>
  56. <groupId>com.jmcloud</groupId>
  57. <artifactId>scis-common-security</artifactId>
  58. </dependency>
  59. <!-- sentinel-->
  60. <dependency>
  61. <groupId>com.jmcloud</groupId>
  62. <artifactId>scis-common-sentinel</artifactId>
  63. </dependency>
  64. <!--灰度支持-->
  65. <dependency>
  66. <groupId>com.jmcloud</groupId>
  67. <artifactId>scis-common-gray</artifactId>
  68. </dependency>
  69. <!--web 模块-->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-web</artifactId>
  73. </dependency>
  74. <!--undertow容器-->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-undertow</artifactId>
  78. </dependency>
  79. <!-- quartz 模块 -->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-quartz</artifactId>
  83. </dependency>
  84. </dependencies>
  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. <configuration>
  95. <skip>false</skip>
  96. </configuration>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>