pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.example</groupId>
  7. <artifactId>springboot</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.5.9</version>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <!--mysql-->
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mybatis.spring.boot</groupId>
  31. <artifactId>mybatis-spring-boot-starter</artifactId>
  32. <version>2.2.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>1.2.74</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.pagehelper</groupId>
  41. <artifactId>pagehelper-spring-boot-starter</artifactId>
  42. <version>1.4.6</version>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>org.mybatis</groupId>
  46. <artifactId>mybatis</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. <version>5.8.18</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  56. <!-- <dependency>-->
  57. <!-- <groupId>com.baomidou</groupId>-->
  58. <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
  59. <!-- <version>3.5.2</version>-->
  60. <!-- </dependency>-->
  61. <dependency>
  62. <groupId>com.auth0</groupId>
  63. <artifactId>java-jwt</artifactId>
  64. <version>4.3.0</version>
  65. </dependency>
  66. <!-- 数据库连接池 -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid-spring-boot-starter</artifactId>
  70. <version>1.2.8</version>
  71. </dependency>
  72. <!-- openai -->
  73. <!-- <dependency>-->
  74. <!-- <groupId>org.springframework.ai</groupId>-->
  75. <!-- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>-->
  76. <!-- </dependency>-->
  77. <dependency>
  78. <groupId>org.projectlombok</groupId>
  79. <artifactId>lombok</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/junit/junit -->
  83. <dependency>
  84. <groupId>junit</groupId>
  85. <artifactId>junit</artifactId>
  86. <version>4.13.2</version>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus-core</artifactId>
  92. <version>3.5.4.1</version>
  93. </dependency>
  94. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  95. <dependency>
  96. <groupId>org.apache.httpcomponents</groupId>
  97. <artifactId>httpclient</artifactId>
  98. <version>4.5.13</version>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <configuration>
  107. <fork>true</fork>
  108. </configuration>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-compiler-plugin</artifactId>
  113. <configuration>
  114. <source>9</source>
  115. <target>9</target>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <repositories>
  121. <repository>
  122. <id>public</id>
  123. <name>aliyun nexus</name>
  124. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  125. <releases>
  126. <enabled>true</enabled>
  127. </releases>
  128. </repository>
  129. <!-- openAi 下载仓库-->
  130. <!-- <repository>-->
  131. <!-- <id>spring-milestones</id>-->
  132. <!-- <name>Spring Milestones</name>-->
  133. <!-- <url>https://repo.spring.io/milestone</url>-->
  134. <!-- <snapshots>-->
  135. <!-- <enabled>false</enabled>-->
  136. <!-- </snapshots>-->
  137. <!-- </repository>-->
  138. <!-- <repository>-->
  139. <!-- <id>spring-snapshots</id>-->
  140. <!-- <name>Spring Snapshots</name>-->
  141. <!-- <url>https://repo.spring.io/snapshot</url>-->
  142. <!-- <releases>-->
  143. <!-- <enabled>false</enabled>-->
  144. <!-- </releases>-->
  145. <!-- </repository>-->
  146. </repositories>
  147. <dependencyManagement>
  148. <!-- <dependencies>-->
  149. <!-- <dependency>-->
  150. <!-- <groupId>org.springframework.ai</groupId>-->
  151. <!-- <artifactId>spring-ai-bom</artifactId>-->
  152. <!-- <version>0.8.1-SNAPSHOT</version>-->
  153. <!-- <type>pom</type>-->
  154. <!-- <scope>import</scope>-->
  155. <!-- </dependency>-->
  156. <!-- </dependencies>-->
  157. </dependencyManagement>
  158. </project>