pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jmcloud</groupId>
  7. <artifactId>scis-visual</artifactId>
  8. <version>3.10.0</version>
  9. </parent>
  10. <artifactId>scis-mp-platform</artifactId>
  11. <packaging>jar</packaging>
  12. <description>微信公众号管理模块</description>
  13. <dependencies>
  14. <!--注册中心客户端-->
  15. <dependency>
  16. <groupId>com.alibaba.cloud</groupId>
  17. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  18. </dependency>
  19. <!--配置中心客户端-->
  20. <dependency>
  21. <groupId>com.alibaba.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  23. </dependency>
  24. <!--数据操作-->
  25. <dependency>
  26. <groupId>com.jmcloud</groupId>
  27. <artifactId>scis-common-data</artifactId>
  28. </dependency>
  29. <!--mybatis-->
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-boot-starter</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <!-- druid 连接池 -->
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>druid-spring-boot-starter</artifactId>
  42. </dependency>
  43. <!--common-->
  44. <dependency>
  45. <groupId>com.jmcloud</groupId>
  46. <artifactId>scis-common-core</artifactId>
  47. </dependency>
  48. <!--swagger-->
  49. <dependency>
  50. <groupId>com.jmcloud</groupId>
  51. <artifactId>scis-common-swagger</artifactId>
  52. </dependency>
  53. <!--安全模块-->
  54. <dependency>
  55. <groupId>com.jmcloud</groupId>
  56. <artifactId>scis-common-security</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.jmcloud</groupId>
  60. <artifactId>scis-common-log</artifactId>
  61. </dependency>
  62. <!-- sentinel-->
  63. <dependency>
  64. <groupId>com.jmcloud</groupId>
  65. <artifactId>scis-common-sentinel</artifactId>
  66. </dependency>
  67. <!--灰度支持-->
  68. <dependency>
  69. <groupId>com.jmcloud</groupId>
  70. <artifactId>scis-common-gray</artifactId>
  71. </dependency>
  72. <!--微信依赖-->
  73. <dependency>
  74. <groupId>com.github.binarywang</groupId>
  75. <artifactId>weixin-java-mp</artifactId>
  76. </dependency>
  77. <!--web 模块-->
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-web</artifactId>
  81. </dependency>
  82. <!--undertow容器-->
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-undertow</artifactId>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. </plugin>
  94. <plugin>
  95. <groupId>io.fabric8</groupId>
  96. <artifactId>docker-maven-plugin</artifactId>
  97. <configuration>
  98. <skip>false</skip>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>