pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.neko</groupId>
  6. <artifactId>nekomimi</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>nekomimi</name>
  9. <description>nekomimi</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. <kafka.version>2.6.6</kafka.version>
  16. <kafka.client.version>2.5.1</kafka.client.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.mysql</groupId>
  25. <artifactId>mysql-connector-j</artifactId>
  26. <scope>runtime</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.5.9</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpclient</artifactId>
  46. <version>4.5.13</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.httpcomponents</groupId>
  50. <artifactId>httpcore</artifactId>
  51. <version>4.4.14</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-lang</groupId>
  55. <artifactId>commons-lang</artifactId>
  56. <version>2.6</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba.fastjson2</groupId>
  60. <artifactId>fastjson2</artifactId>
  61. <version>2.0.35</version>
  62. </dependency>
  63. <!-- <dependency>-->
  64. <!-- <groupId>com.alibaba</groupId>-->
  65. <!-- <artifactId>fastjson</artifactId>-->
  66. <!-- <version>1.2.79</version>-->
  67. <!-- </dependency>-->
  68. <dependency>
  69. <groupId>io.jsonwebtoken</groupId>
  70. <artifactId>jjwt</artifactId>
  71. <version>0.9.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. <version>3.13.0</version> <!-- 请使用最新稳定版本 -->
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-data-redis</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.hutool</groupId>
  84. <artifactId>hutool-all</artifactId>
  85. <version>5.7.22</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-configuration-processor</artifactId>
  90. <optional>true</optional>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-websocket</artifactId>
  95. </dependency>
  96. <!-- 引入虹软jar包-->
  97. <dependency>
  98. <groupId>com.arcsoft.face</groupId>
  99. <artifactId>arcsoft-sdk-face</artifactId>
  100. <version>3.0.0.0</version>
  101. <scope>system</scope>
  102. <systemPath>${basedir}/libs/arcsoft-sdk-face-3.0.0.0.jar</systemPath>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.minio</groupId>
  106. <artifactId>minio</artifactId>
  107. <version>7.1.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.kafka</groupId>
  111. <artifactId>spring-kafka</artifactId>
  112. <exclusions>
  113. <exclusion>
  114. <groupId>org.apache.kafka</groupId>
  115. <artifactId>kafka-clients</artifactId>
  116. </exclusion>
  117. </exclusions>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.kafka</groupId>
  121. <artifactId>kafka-clients</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.belerweb</groupId>
  125. <artifactId>pinyin4j</artifactId>
  126. <version>2.5.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>io.github.lnyo-cly</groupId>
  130. <artifactId>ai4j-spring-boot-stater</artifactId>
  131. <version>0.6.2</version>
  132. </dependency>
  133. </dependencies>
  134. <dependencyManagement>
  135. <dependencies>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-dependencies</artifactId>
  139. <version>${spring-boot.version}</version>
  140. <type>pom</type>
  141. <scope>import</scope>
  142. </dependency>
  143. </dependencies>
  144. </dependencyManagement>
  145. <build>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-compiler-plugin</artifactId>
  150. <version>3.8.1</version>
  151. <configuration>
  152. <source>1.8</source>
  153. <target>1.8</target>
  154. <encoding>UTF-8</encoding>
  155. <!-- <includeSystemScope>true</includeSystemScope>-->
  156. </configuration>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin</artifactId>
  161. <version>${spring-boot.version}</version>
  162. <configuration>
  163. <mainClass>com.neko.NekomimiApplication</mainClass>
  164. <skip>true</skip>
  165. </configuration>
  166. <executions>
  167. <execution>
  168. <id>repackage</id>
  169. <goals>
  170. <goal>repackage</goal>
  171. </goals>
  172. </execution>
  173. </executions>
  174. </plugin>
  175. </plugins>
  176. </build>
  177. </project>