blob: 3b586904aea52675dfa78022215f45d42d6b8024 [file] [log] [blame]
223010243394e0e2025-04-15 17:47:02 +08001<?xml version="1.0" encoding="UTF-8"?>
Your Name695f6a62025-05-17 00:58:04 +08002<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.springframework.boot</groupId>
8 <artifactId>spring-boot-starter-parent</artifactId>
9 <version>3.4.5</version>
10 <relativePath /> <!-- lookup parent from repository -->
11 </parent>
12 <groupId>edu.bjtu.groupone</groupId>
13 <artifactId>backend</artifactId>
14 <version>0.0.1-SNAPSHOT</version>
15 <name>backend</name>
16 <description>backend</description>
17 <url />
18 <licenses>
19 <license />
20 </licenses>
21 <developers>
22 <developer />
23 </developers>
24 <scm>
25 <connection />
26 <developerConnection />
27 <tag />
28 <url />
29 </scm>
30 <properties>
31 <java.version>17</java.version>
32 </properties>
22301014f3cf5d52025-05-29 16:19:04 +080033
Your Name695f6a62025-05-17 00:58:04 +080034 <dependencies>
35 <dependency>
36 <groupId>org.springframework.boot</groupId>
37 <artifactId>spring-boot-starter-web</artifactId>
38 </dependency>
22301014f3cf5d52025-05-29 16:19:04 +080039<!-- 热重载支持 -->
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-devtools</artifactId>
43 <optional>true</optional>
44 </dependency>
Your Name695f6a62025-05-17 00:58:04 +080045 <dependency>
46 <groupId>com.h2database</groupId>
47 <artifactId>h2</artifactId>
48 <scope>test</scope>
49 </dependency>
223010243394e0e2025-04-15 17:47:02 +080050
Your Name695f6a62025-05-17 00:58:04 +080051 <dependency>
Your Name695f6a62025-05-17 00:58:04 +080052 <groupId>org.projectlombok</groupId>
53 <artifactId>lombok</artifactId>
54 <optional>true</optional>
55 </dependency>
56
57 <dependency>
58 <groupId>com.mysql</groupId>
59 <artifactId>mysql-connector-j</artifactId>
60 <scope>runtime</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-test</artifactId>
66 <scope>test</scope>
67 </dependency>
68
69 <dependency>
Your Name292c25d2025-05-25 01:21:44 +080070 <groupId>org.springdoc</groupId>
71 <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
72 <version>2.1.0</version> <!-- 或最新稳定版 -->
73 </dependency>
74
75
76 <dependency>
Your Name695f6a62025-05-17 00:58:04 +080077 <groupId>io.springfox</groupId>
78 <artifactId>springfox-boot-starter</artifactId>
79 <version>3.0.0</version>
80 </dependency>
81
82 <dependency>
Your Name292c25d2025-05-25 01:21:44 +080083 <groupId>org.springdoc</groupId>
84 <artifactId>springdoc-openapi-ui</artifactId>
85 <version>1.6.14</version> <!-- 或者最新版本 -->
86 </dependency>
87
88 <dependency>
Your Name695f6a62025-05-17 00:58:04 +080089 <groupId>com.volcengine</groupId>
90 <artifactId>volcengine-java-sdk-ark-runtime</artifactId>
91 <version>LATEST</version>
92 </dependency>
93 <dependency>
94 <groupId>com.aliyun.oss</groupId>
95 <artifactId>aliyun-sdk-oss</artifactId>
96 <version>3.17.4</version>
97 </dependency>
98 <dependency>
99 <groupId>io.jsonwebtoken</groupId>
100 <artifactId>jjwt</artifactId>
101 <version>0.9.1</version>
102 </dependency>
103
104 <dependency>
105 <groupId>com.theokanning.openai-gpt3-java</groupId>
106 <artifactId>api</artifactId>
107 <version>0.9.0</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.mybatis.spring.boot</groupId>
112 <artifactId>mybatis-spring-boot-starter</artifactId>
113 <version>3.0.3</version>
114 </dependency>
115 <dependency>
116 <groupId>com.theokanning.openai-gpt3-java</groupId>
117 <artifactId>client</artifactId>
118 <version>0.9.0</version>
119 </dependency>
120 <dependency>
121 <groupId>junit</groupId>
122 <artifactId>junit</artifactId>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.springframework.boot</groupId>
127 <artifactId>spring-boot-starter-test</artifactId>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
223010240eaa16b2025-06-05 09:29:25 +0800131 <groupId>com.turn</groupId>
132 <artifactId>ttorrent-core</artifactId>
133 <version>1.5</version>
134 <classifier>javadoc</classifier>
135 <type>javadoc</type>
136 </dependency>
137
138 <dependency>
139 <groupId>com.turn</groupId>
140 <artifactId>ttorrent-core</artifactId>
141 <version>1.5</version>
142 <classifier>sources</classifier>
143 <type>java-source</type>
144 </dependency>
145 <dependency>
146 <groupId>com.turn</groupId>
147 <artifactId>ttorrent-core</artifactId>
148 <version>1.5</version>
149 </dependency>
150 <dependency>
Your Name695f6a62025-05-17 00:58:04 +0800151 <groupId>org.mockito</groupId>
152 <artifactId>mockito-core</artifactId>
Your Name292c25d2025-05-25 01:21:44 +0800153 <version>5.5.0</version>
Your Name695f6a62025-05-17 00:58:04 +0800154 <scope>test</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.springframework.boot</groupId>
158 <artifactId>spring-boot-starter-mail</artifactId>
159 </dependency>
160 <dependency>
161 <groupId>com.sun.mail</groupId>
162 <artifactId>jakarta.mail</artifactId>
163 <version>2.0.1</version>
164 </dependency>
165
晓瑞223cae85b72025-05-30 01:09:40 +0800166 <!-- Spring Data JPA -->
167 <dependency>
168 <groupId>org.springframework.boot</groupId>
169 <artifactId>spring-boot-starter-data-jpa</artifactId>
170 </dependency>
171
172 <!-- Jackson(JSON处理) -->
173 <dependency>
174 <groupId>com.fasterxml.jackson.core</groupId>
175 <artifactId>jackson-databind</artifactId>
176 </dependency>
177
Your Name695f6a62025-05-17 00:58:04 +0800178 </dependencies>
179
180 <build>
181 <plugins>
182 <plugin>
183 <groupId>org.apache.maven.plugins</groupId>
184 <artifactId>maven-compiler-plugin</artifactId>
185 <version>3.11.0</version>
186 <configuration>
187 <source>17</source> <!-- 保持与Java版本一致 -->
188 <target>17</target>
189 <compilerArgs>
190 <arg>-parameters</arg> <!-- 保留方法参数名 -->
191 </compilerArgs>
192 <annotationProcessorPaths>
193 <path>
194 <groupId>org.projectlombok</groupId>
195 <artifactId>lombok</artifactId>
196 <version>1.18.30</version>
197 </path>
198 </annotationProcessorPaths>
199 </configuration>
200 </plugin>
201 <plugin>
202 <groupId>org.springframework.boot</groupId>
203 <artifactId>spring-boot-maven-plugin</artifactId>
204 <version>3.1.5</version>
205 <configuration>
206 <excludes>
207 <exclude>
208 <groupId>org.projectlombok</groupId>
209 <artifactId>lombok</artifactId>
210 </exclude>
211 </excludes>
212 <executable>true</executable><!-- 支持可执行JAR -->
213 </configuration>
214 <executions>
215 <execution>
216 <goals>
217 <goal>repackage</goal>
218 </goals>
219 </execution>
220 </executions>
221 </plugin>
222 </plugins>
223 </build>
224
225</project>