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
+ <!-- <parent>-->
7
+ <!-- <groupId>org.springframework.boot</groupId>-->
8
+ <!-- <artifactId>spring-boot-starter-parent</artifactId>-->
9
+ <!-- <version>3.2.8</version>-->
10
+ <!-- </parent>-->
11
+
12
+ <groupId >com.github.emeraldjava</groupId >
13
+ <artifactId >spring-boot-3-2</artifactId >
14
+ <version >1.0-SNAPSHOT</version >
15
+ <name >spring-boot-3-2</name >
16
+ <packaging >pom</packaging >
17
+
18
+ <properties >
19
+ <maven .compiler.source>21</maven .compiler.source>
20
+ <maven .compiler.target>21</maven .compiler.target>
21
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
22
+ <spring-boot .version>3.3.4</spring-boot .version>
23
+ <springdoc-openapi-webmvc-ui .version>2.5.0</springdoc-openapi-webmvc-ui .version>
24
+ </properties >
25
+
26
+ <dependencyManagement >
27
+ <dependencies >
28
+ <dependency >
29
+ <groupId >org.junit</groupId >
30
+ <artifactId >junit-bom</artifactId >
31
+ <version >5.10.3</version >
32
+ <!-- <version>${junit-jupiter.version}</version>-->
33
+ <type >pom</type >
34
+ <scope >import</scope >
35
+ </dependency >
36
+ <dependency >
37
+ <groupId >org.springframework.boot</groupId >
38
+ <artifactId >spring-boot-dependencies</artifactId >
39
+ <version >${spring-boot.version} </version >
40
+ <type >pom</type >
41
+ <scope >import</scope >
42
+ </dependency >
43
+ </dependencies >
44
+ </dependencyManagement >
45
+
46
+ <build >
47
+ <plugins >
48
+ <plugin >
49
+ <groupId >org.springframework.boot</groupId >
50
+ <artifactId >spring-boot-maven-plugin</artifactId >
51
+ <executions >
52
+ <execution >
53
+ <goals >
54
+ <goal >build-info</goal >
55
+ <goal >repackage</goal >
56
+ </goals >
57
+ </execution >
58
+ </executions >
59
+ </plugin >
60
+ </plugins >
61
+ </build >
62
+
63
+ </project >
0 commit comments