|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd "> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>com.baeldung</groupId> |
6 | 5 | <artifactId>cas-server</artifactId> |
7 | 6 | <packaging>war</packaging> |
8 | 7 | <version>1.0</version> |
9 | 8 |
|
| 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 | + |
10 | 16 | <dependencies> |
11 | 17 | <dependency> |
12 | 18 | <groupId>org.apereo.cas</groupId> |
|
39 | 45 | <plugin> |
40 | 46 | <groupId>org.springframework.boot</groupId> |
41 | 47 | <artifactId>spring-boot-maven-plugin</artifactId> |
42 | | - <version>${springboot.version}</version> |
43 | 48 | <configuration> |
44 | 49 | <mainClass>${mainClassName}</mainClass> |
45 | 50 | <addResources>true</addResources> |
|
74 | 79 | </overlays> |
75 | 80 | </configuration> |
76 | 81 | </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> |
82 | 82 | </plugins> |
83 | 83 | <finalName>cas</finalName> |
84 | 84 | </build> |
85 | 85 |
|
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 | | - |
113 | 86 | <profiles> |
114 | 87 | <profile> |
115 | 88 | <activation> |
|
214 | 187 | </profiles> |
215 | 188 |
|
216 | 189 | <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> |
219 | 191 | <!-- app.server could be -jetty, -undertow, -tomcat, or blank if you plan to provide appserver --> |
220 | 192 | <app.server>-tomcat</app.server> |
221 | 193 |
|
222 | 194 | <mainClassName>org.springframework.boot.loader.WarLauncher</mainClassName> |
223 | 195 | <isExecutable>false</isExecutable> |
224 | 196 | <manifestFileToUse>${project.build.directory}/war/work/org.apereo.cas/cas-server-webapp${app.server}/META-INF/MANIFEST.MF</manifestFileToUse> |
225 | 197 |
|
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> |
229 | 198 | <wrapper-maven-plugin.version>0.0.4</wrapper-maven-plugin.version> |
230 | 199 | <maven-war-plugin.version>2.6</maven-war-plugin.version> |
231 | 200 | <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> |
|
0 commit comments