|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
| 4 | +
|
| 5 | + Copyright (c) 2011-2015 ForgeRock AS. All rights reserved. |
| 6 | +
|
| 7 | + The contents of this file are subject to the terms |
| 8 | + of the Common Development and Distribution License |
| 9 | + (the License). You may not use this file except in |
| 10 | + compliance with the License.x |
| 11 | +
|
| 12 | + You can obtain a copy of the License at |
| 13 | + http://forgerock.org/license/CDDLv1.0.html |
| 14 | + See the License for the specific language governing |
| 15 | + permission and limitations under the License. |
| 16 | +
|
| 17 | + When distributing Covered Code, include this CDDL |
| 18 | + Header Notice in each file and include the License file |
| 19 | + at http://forgerock.org/license/CDDLv1.0.html |
| 20 | + If applicable, add the following below the CDDL Header, |
| 21 | + with the fields enclosed by brackets [] replaced by |
| 22 | + your own identifying information: |
| 23 | + "Portions Copyrighted [year] [name of copyright owner]" |
| 24 | +
|
| 25 | + Portions Copyrighted 2018-2024 3A Systems, LLC |
| 26 | +--> |
2 | 27 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 28 | <modelVersion>4.0.0</modelVersion> |
4 | 29 | <groupId>org.openidentityplatform</groupId> |
|
13 | 38 | <inceptionYear>2018</inceptionYear> |
14 | 39 | <url>https://github.com/OpenIdentityPlatform/OpenICF</url> |
15 | 40 | <properties> |
16 | | - <maven.compiler.target>1.8</maven.compiler.target> |
17 | | - <maven.compiler.source>1.8</maven.compiler.source> |
| 41 | + <maven.compiler.target>8</maven.compiler.target> |
| 42 | + <maven.compiler.source>8</maven.compiler.source> |
18 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | 44 | <java.surefire.options /> |
20 | 45 | </properties> |
|
152 | 177 | </plugins> |
153 | 178 | </build> |
154 | 179 | </profile> |
| 180 | + <profile> |
| 181 | + <id>set-compiler-release</id> |
| 182 | + <activation> |
| 183 | + <jdk>[9,)</jdk> |
| 184 | + </activation> |
| 185 | + <build> |
| 186 | + <pluginManagement> |
| 187 | + <plugins> |
| 188 | + <plugin> |
| 189 | + <groupId>org.apache.maven.plugins</groupId> |
| 190 | + <artifactId>maven-compiler-plugin</artifactId> |
| 191 | + <configuration> |
| 192 | + <fork>true</fork> |
| 193 | + <release>8</release> |
| 194 | + <compilerArgs> |
| 195 | + <arg>-XDignore.symbol.file</arg> |
| 196 | + <arg>-Xlint:unchecked</arg> |
| 197 | + </compilerArgs> |
| 198 | + </configuration> |
| 199 | + </plugin> |
| 200 | + </plugins> |
| 201 | + </pluginManagement> |
| 202 | + </build> |
| 203 | + </profile> |
155 | 204 | <profile> |
156 | 205 | <id>jdk17.options</id> |
157 | 206 | <activation> |
|
330 | 379 | <plugin> |
331 | 380 | <groupId>org.apache.maven.plugins</groupId> |
332 | 381 | <artifactId>maven-javadoc-plugin</artifactId> |
333 | | - <version>3.6.3</version> |
| 382 | + <version>3.10.1</version> |
334 | 383 | <executions> |
335 | 384 | <execution> |
336 | 385 | <id>attach-javadocs</id> |
|
0 commit comments