77 <parent >
88 <groupId >io.exterminator3618</groupId >
99 <artifactId >common</artifactId >
10- <version >mainline </version >
10+ <version >0.1.0-dev </version >
1111 <relativePath >../pom.xml</relativePath >
1212 </parent >
1313
1414 <!-- <name>Exterminator3618-Server</name>-->
1515 <artifactId >server</artifactId >
16- <version >0.1.0-dev </version >
16+ <version >${project.parent.version} </version >
1717 <packaging >jar</packaging >
1818
1919 <properties >
2020 <maven .compiler.source>21</maven .compiler.source>
2121 <maven .compiler.target>21</maven .compiler.target>
2222 <maven .compiler.release>21</maven .compiler.release>
2323 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
24- <springboot .version>3.5.6</ springboot .version>
24+ <spring-boot .version>3.5.7</ spring-boot .version>
2525 </properties >
2626
2727 <dependencies >
4646 <dependency >
4747 <groupId >org.springframework.boot</groupId >
4848 <artifactId >spring-boot-starter-web</artifactId >
49- <version >${springboot .version} </version >
49+ <version >${spring-boot .version} </version >
5050 </dependency >
5151 <dependency >
5252 <groupId >org.springframework.boot</groupId >
5353 <artifactId >spring-boot-starter-data-jpa</artifactId >
54- <version >${springboot .version} </version >
54+ <version >${spring-boot .version} </version >
5555 </dependency >
5656 <dependency >
5757 <groupId >org.springframework.boot</groupId >
5858 <artifactId >spring-boot-starter-data-redis</artifactId >
59- <version >${springboot .version} </version >
59+ <version >${spring-boot .version} </version >
6060 </dependency >
6161
6262 <!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
6767 </dependency >
6868 </dependencies >
6969
70+ <build >
71+ <plugins >
72+ <plugin >
73+ <groupId >org.apache.maven.plugins</groupId >
74+ <artifactId >maven-compiler-plugin</artifactId >
75+ <version >3.14.1</version >
76+ <configuration >
77+ <annotationProcessorPaths >
78+ <path >
79+ <groupId >org.projectlombok</groupId >
80+ <artifactId >lombok</artifactId >
81+ </path >
82+ </annotationProcessorPaths >
83+ </configuration >
84+ </plugin >
85+ <plugin >
86+ <groupId >org.springframework.boot</groupId >
87+ <artifactId >spring-boot-maven-plugin</artifactId >
88+ <version >${spring-boot.version} </version >
89+ <configuration >
90+ <mainClass >io.exterminator3618.server.Server</mainClass >
91+ <excludes >
92+ <exclude >
93+ <groupId >org.projectlombok</groupId >
94+ <artifactId >lombok</artifactId >
95+ </exclude >
96+ </excludes >
97+ </configuration >
98+ </plugin >
99+ </plugins >
100+ </build >
101+
70102</project >
0 commit comments