|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>com.appe</groupId>
|
5 | 5 | <artifactId>springboot-login-application</artifactId>
|
6 |
| - <version>1.0</version> |
| 6 | + <version>1.0.0</version> |
7 | 7 | <packaging>jar</packaging>
|
8 |
| - <description>spring-boot2 demo application</description> |
| 8 | + <description>spring-boot demo application</description> |
9 | 9 | <properties>
|
10 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
11 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
12 |
| - <commons.io.version>2.7</commons.io.version> |
| 10 | + <maven.compiler.source>17</maven.compiler.source> |
| 11 | + <maven.compiler.target>17</maven.compiler.target> |
| 12 | + <commons.io.version>2.14.0</commons.io.version> |
13 | 13 | <commons-lang.version>3.5</commons-lang.version>
|
14 | 14 | <jjwt.version>0.6.0</jjwt.version>
|
15 | 15 | <junit.version>4.13.1</junit.version>
|
16 |
| - <spring.boot.version>2.5.12</spring.boot.version> |
| 16 | + <spring.boot.version>3.3.5</spring.boot.version> |
17 | 17 | <docker.image.prefix>megadotnet</docker.image.prefix>
|
18 | 18 | <joda.time.version>2.9.9</joda.time.version>
|
19 | 19 | <qiniu.version>[7.2.0, 7.2.99]</qiniu.version>
|
20 | 20 | </properties>
|
21 | 21 | <parent>
|
22 | 22 | <groupId>org.springframework.boot</groupId>
|
23 | 23 | <artifactId>spring-boot-starter-parent</artifactId>
|
24 |
| - <version>2.3.12.RELEASE</version> |
| 24 | + <version>3.3.5</version> |
25 | 25 | </parent>
|
26 | 26 | <build>
|
27 | 27 | <plugins>
|
|
30 | 30 | <artifactId>maven-compiler-plugin</artifactId>
|
31 | 31 | <version>3.8.1</version>
|
32 | 32 | <configuration>
|
33 |
| - <source>1.8</source> |
34 |
| - <target>1.8</target> |
| 33 | + <source>17</source> |
| 34 | + <target>17</target> |
35 | 35 | </configuration>
|
36 | 36 | </plugin>
|
37 | 37 | <plugin>
|
38 | 38 | <groupId>org.springframework.boot</groupId>
|
39 | 39 | <artifactId>spring-boot-maven-plugin</artifactId>
|
40 | 40 | <version>${spring.boot.version}</version>
|
41 | 41 | <configuration>
|
42 |
| - <fork>true</fork> |
43 | 42 | <addResources>true</addResources>
|
44 | 43 | </configuration>
|
45 | 44 | <executions>
|
|
81 | 80 | <groupId>org.springframework.boot</groupId>
|
82 | 81 | <artifactId>spring-boot-starter-undertow</artifactId>
|
83 | 82 | </dependency>
|
| 83 | + <dependency> |
| 84 | + <groupId>jakarta.servlet</groupId> |
| 85 | + <artifactId>jakarta.servlet-api</artifactId> |
| 86 | + </dependency> |
84 | 87 | <dependency>
|
85 | 88 | <groupId>org.springframework.boot</groupId>
|
86 | 89 | <artifactId>spring-boot-starter-mail</artifactId>
|
|
143 | 146 | <groupId>org.springframework.boot</groupId>
|
144 | 147 | <artifactId>spring-boot-devtools</artifactId>
|
145 | 148 | </dependency>
|
| 149 | + |
146 | 150 | <dependency>
|
147 |
| - <groupId>io.springfox</groupId> |
148 |
| - <artifactId>springfox-swagger2</artifactId> |
149 |
| - <version>2.8.0</version> |
150 |
| - </dependency> |
151 |
| - <dependency> |
152 |
| - <groupId>io.springfox</groupId> |
153 |
| - <artifactId>springfox-swagger-ui</artifactId> |
154 |
| - <version>2.8.0</version> |
| 151 | + <groupId>org.springdoc</groupId> |
| 152 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 153 | + <version>2.0.4</version> |
155 | 154 | </dependency>
|
| 155 | + |
156 | 156 | <dependency>
|
157 | 157 | <groupId>org.mockito</groupId>
|
158 | 158 | <artifactId>mockito-all</artifactId>
|
|
167 | 167 | <dependency>
|
168 | 168 | <groupId>org.projectlombok</groupId>
|
169 | 169 | <artifactId>lombok</artifactId>
|
170 |
| - <version>1.16.20</version> |
| 170 | + <version>1.18.22</version> |
171 | 171 | <scope>provided</scope>
|
172 | 172 | </dependency>
|
173 | 173 |
|
|
207 | 207 | <scope>test</scope>
|
208 | 208 | </dependency>
|
209 | 209 |
|
| 210 | + <dependency> |
| 211 | + <groupId>javax.xml.bind</groupId> |
| 212 | + <artifactId>jaxb-api</artifactId> |
| 213 | + <version>2.3.1</version> |
| 214 | + </dependency> |
| 215 | + <dependency> |
| 216 | + <groupId>org.glassfish.jaxb</groupId> |
| 217 | + <artifactId>jaxb-runtime</artifactId> |
| 218 | + <version>2.3.1</version> |
| 219 | + </dependency> |
| 220 | + <dependency> |
| 221 | + <groupId>commons-codec</groupId> |
| 222 | + <artifactId>commons-codec</artifactId> |
| 223 | + <version>1.15</version> |
| 224 | + </dependency> |
| 225 | + |
210 | 226 | </dependencies>
|
211 | 227 |
|
212 | 228 | <!-- 阿里云maven仓库 -->
|
|
0 commit comments