Added some JDK 11 upgrades and point to oparent java 11 branch
[policy/parent.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4   ================================================================================
5   Licensed under the Apache License, Version 2.0 (the "License");
6   you may not use this file except in compliance with the License.
7   You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11   Unless required by applicable law or agreed to in writing, software
12   distributed under the License is distributed on an "AS IS" BASIS,
13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   See the License for the specific language governing permissions and
15   limitations under the License.
16
17   SPDX-License-Identifier: Apache-2.0
18   ============LICENSE_END=========================================================
19 -->
20 <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/xsd/maven-4.0.0.xsd">
21     <modelVersion>4.0.0</modelVersion>
22     <parent>
23         <groupId>org.onap.oparent</groupId>
24         <artifactId>oparent</artifactId>
25         <version>3.0.0-SNAPSHOT</version>
26         <relativePath />
27     </parent>
28     <groupId>org.onap.policy.parent</groupId>
29     <artifactId>policy-parent</artifactId>
30     <version>3.1.1-SNAPSHOT</version>
31     <packaging>pom</packaging>
32
33     <properties>
34         <oparent.version>3.0.0-SNAPSHOT</oparent.version>
35     </properties>
36
37     <modules>
38         <module>integration</module>
39     </modules>
40
41     <build>
42         <pluginManagement>
43             <plugins>
44                 <!--
45                 Using https://code.revelc.net/formatter-maven-plugin/ for Eclipse formatter
46                 Using https://github.com/diffplug/spotless/tree/master/plugin-maven for import order
47                 Use in combination to rewrite code and imports, then checkstyle
48
49                 Be sure to override ${project.parent.basedir} in order to find the XML file
50
51                 mvn formatter:format spotless:apply process-sources -Dproject.parent.basedir=TODO
52                 -->
53                 <plugin>
54                     <groupId>net.revelc.code.formatter</groupId>
55                     <artifactId>formatter-maven-plugin</artifactId>
56                     <version>2.11.0</version>
57                     <configuration>
58                         <configFile>${project.parent.basedir}/onap-java-formatter.xml</configFile>
59                     </configuration>
60                     <!-- https://code.revelc.net/formatter-maven-plugin/
61                          use mvn formatter:format to rewrite source files
62                          use mvn formatter:validate to validate source files -->
63                 </plugin>
64                 <plugin>
65                     <groupId>com.diffplug.spotless</groupId>
66                     <artifactId>spotless-maven-plugin</artifactId>
67                     <version>1.26.1</version>
68                     <configuration>
69                         <java>
70                             <importOrder>
71                                 <order>com,java,javax,org</order>
72                             </importOrder>
73                         </java>
74                     </configuration>
75                     <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven
76                          use mvn spotless:apply to rewrite source files
77                          use mvn spotless:check to validate source files -->
78                 </plugin>
79             </plugins>
80         </pluginManagement>
81     </build>
82
83 </project>