云链智安
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>yubb</artifactId>
  7. <groupId>com.yubb</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>yubb-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- SpringBoot集成thymeleaf模板 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  21. </dependency>
  22. <!-- spring-boot-devtools -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-devtools</artifactId>
  26. <optional>true</optional> <!-- 表示依赖不会传递 -->
  27. </dependency>
  28. <!-- swagger2-->
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-swagger2</artifactId>
  32. </dependency>
  33. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  34. <dependency>
  35. <groupId>io.swagger</groupId>
  36. <artifactId>swagger-annotations</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.swagger</groupId>
  40. <artifactId>swagger-models</artifactId>
  41. </dependency>
  42. <!-- Mysql驱动包 -->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. </dependency>
  47. <!-- 核心模块-->
  48. <dependency>
  49. <groupId>com.yubb</groupId>
  50. <artifactId>yubb-framework</artifactId>
  51. </dependency>
  52. <!-- 定时任务-->
  53. <dependency>
  54. <groupId>com.yubb</groupId>
  55. <artifactId>yubb-quartz</artifactId>
  56. </dependency>
  57. <!-- 代码生成-->
  58. <dependency>
  59. <groupId>com.yubb</groupId>
  60. <artifactId>yubb-generator</artifactId>
  61. </dependency>
  62. <!-- 阿里云javaSDK-->
  63. <dependency>
  64. <groupId>com.aliyun.oss</groupId>
  65. <artifactId>aliyun-sdk-oss</artifactId>
  66. <version>3.15.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-io</groupId>
  70. <artifactId>commons-io</artifactId>
  71. <version>2.4</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-beanutils</groupId>
  75. <artifactId>commons-beanutils</artifactId>
  76. <version>1.9.3</version>
  77. </dependency>
  78. <!-- minio图片上传 -->
  79. <dependency>
  80. <groupId>io.minio</groupId>
  81. <artifactId>minio</artifactId>
  82. <version>8.4.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.squareup.okhttp3</groupId>
  86. <artifactId>okhttp</artifactId>
  87. <version>4.9.3</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.jsonwebtoken</groupId>
  91. <artifactId>jjwt</artifactId>
  92. <version>0.9.1</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>redis.clients</groupId>
  96. <artifactId>jedis</artifactId>
  97. <version>3.6.3</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.taosdata.jdbc</groupId>
  101. <artifactId>taos-jdbcdriver</artifactId>
  102. <version>3.2.3</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.sun.mail</groupId>
  106. <artifactId>javax.mail</artifactId>
  107. <version>1.6.2</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.data</groupId>
  111. <artifactId>spring-data-redis</artifactId>
  112. </dependency>
  113. <!-- 公众号 -->
  114. <dependency>
  115. <groupId>com.github.binarywang</groupId>
  116. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  117. <version>4.5.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>cn.hutool</groupId>
  121. <artifactId>hutool-all</artifactId>
  122. <version>5.8.20</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.bouncycastle</groupId>
  126. <artifactId>bcprov-jdk15to18</artifactId>
  127. <version>1.72</version>
  128. </dependency>
  129. </dependencies>
  130. <build>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-maven-plugin</artifactId>
  135. <version>2.1.1.RELEASE</version>
  136. <configuration>
  137. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  138. </configuration>
  139. <executions>
  140. <execution>
  141. <goals>
  142. <goal>repackage</goal>
  143. </goals>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-war-plugin</artifactId>
  150. <version>3.0.0</version>
  151. <configuration>
  152. <failOnMissingWebXml>false</failOnMissingWebXml>
  153. <warName>${project.artifactId}</warName>
  154. </configuration>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-compiler-plugin</artifactId>
  159. <configuration>
  160. <source>8</source>
  161. <target>8</target>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. <finalName>${project.artifactId}</finalName>
  166. </build>
  167. </project>