22<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
33 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd " >
44 <modelVersion >4.0.0</modelVersion >
5- <groupId >com.baeldung</groupId >
65 <artifactId >cas-server</artifactId >
76 <packaging >war</packaging >
87 <version >1.0</version >
98
9+ <parent >
10+ <artifactId >parent-boot-1</artifactId >
11+ <groupId >com.baeldung</groupId >
12+ <version >0.0.1-SNAPSHOT</version >
13+ <relativePath >../../parent-boot-1</relativePath >
14+ </parent >
15+
1016 <dependencies >
1117 <dependency >
1218 <groupId >org.apereo.cas</groupId >
3945 <plugin >
4046 <groupId >org.springframework.boot</groupId >
4147 <artifactId >spring-boot-maven-plugin</artifactId >
42- <version >${springboot.version} </version >
4348 <configuration >
4449 <mainClass >${mainClassName} </mainClass >
4550 <addResources >true</addResources >
7479 </overlays >
7580 </configuration >
7681 </plugin >
77- <plugin >
78- <groupId >org.apache.maven.plugins</groupId >
79- <artifactId >maven-compiler-plugin</artifactId >
80- <version >${maven-compiler-plugin.version} </version >
81- </plugin >
8282 </plugins >
8383 <finalName >cas</finalName >
8484 </build >
8585
86- <repositories >
87- <repository >
88- <id >sonatype-releases</id >
89- <url >http://oss.sonatype.org/content/repositories/releases/</url >
90- <snapshots >
91- <enabled >false</enabled >
92- </snapshots >
93- <releases >
94- <enabled >true</enabled >
95- </releases >
96- </repository >
97- <repository >
98- <id >sonatype-snapshots</id >
99- <url >https://oss.sonatype.org/content/repositories/snapshots/</url >
100- <snapshots >
101- <enabled >true</enabled >
102- </snapshots >
103- <releases >
104- <enabled >false</enabled >
105- </releases >
106- </repository >
107- <repository >
108- <id >shibboleth-releases</id >
109- <url >https://build.shibboleth.net/nexus/content/repositories/releases</url >
110- </repository >
111- </repositories >
112-
11386 <profiles >
11487 <profile >
11588 <activation >
214187 </profiles >
215188
216189 <properties >
217- <cas .version>5.3.0-SNAPSHOT</cas .version>
218- <springboot .version>1.5.13.RELEASE</springboot .version>
190+ <cas .version>5.3.3</cas .version>
219191 <!-- app.server could be -jetty, -undertow, -tomcat, or blank if you plan to provide appserver -->
220192 <app .server>-tomcat</app .server>
221193
222194 <mainClassName >org.springframework.boot.loader.WarLauncher</mainClassName >
223195 <isExecutable >false</isExecutable >
224196 <manifestFileToUse >${project.build.directory}/war/work/org.apereo.cas/cas-server-webapp${app.server}/META-INF/MANIFEST.MF</manifestFileToUse >
225197
226- <maven .compiler.source>1.8</maven .compiler.source>
227- <maven .compiler.target>1.8</maven .compiler.target>
228- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
229198 <wrapper-maven-plugin .version>0.0.4</wrapper-maven-plugin .version>
230199 <maven-war-plugin .version>2.6</maven-war-plugin .version>
231200 <maven-compiler-plugin .version>3.3</maven-compiler-plugin .version>
201+
232202 <echo-maven-plugin .version>0.3.0</echo-maven-plugin .version>
233203 <pgpverify-maven-plugin .version>1.1.0</pgpverify-maven-plugin .version>
234204 </properties >
235205
236- </project >
206+ </project >
0 commit comments