Removing ONAP O-Parent as parent to Policy Framework.
[policy/parent.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2020-2021 AT&T. All rights reserved.
5    Modifications Copyright (C) 2021, 2024 Nordix Foundation.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18
19   SPDX-License-Identifier: Apache-2.0
20   ============LICENSE_END=========================================================
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25     <groupId>org.onap.policy.parent</groupId>
26     <artifactId>policy-parent</artifactId>
27     <version>4.1.2-SNAPSHOT</version>
28     <packaging>pom</packaging>
29
30     <properties>
31         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
33         <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
34     </properties>
35
36     <modules>
37         <module>checkstyle</module>
38         <module>resources</module>
39         <module>integration</module>
40     </modules>
41
42     <distributionManagement>
43         <repository>
44             <id>ecomp-releases</id>
45             <url>${onap.nexus.url}/content/repositories/releases</url>
46         </repository>
47         <snapshotRepository>
48             <id>ecomp-snapshots</id>
49             <url>${onap.nexus.url}/content/repositories/snapshots</url>
50         </snapshotRepository>
51     </distributionManagement>
52
53     <build>
54         <pluginManagement>
55             <plugins>
56                 <!--
57                 Using https://code.revelc.net/formatter-maven-plugin/ for Eclipse formatter
58                 Using https://github.com/diffplug/spotless/tree/master/plugin-maven for import order
59                 Use in combination to rewrite code and imports, then checkstyle
60
61                 Be sure to override ${project.parent.basedir} in order to find the XML file
62
63                 mvn formatter:format spotless:apply process-sources -Dproject.parent.basedir=<basedir>
64                 -->
65                 <plugin>
66                     <groupId>net.revelc.code.formatter</groupId>
67                     <artifactId>formatter-maven-plugin</artifactId>
68                     <version>2.11.0</version>
69                     <configuration>
70                         <configFile>${project.parent.basedir}/onap-java-formatter.xml</configFile>
71                     </configuration>
72                     <!-- https://code.revelc.net/formatter-maven-plugin/
73                          use mvn formatter:format to rewrite source files
74                          use mvn formatter:validate to validate source files -->
75                 </plugin>
76                 <plugin>
77                     <groupId>com.diffplug.spotless</groupId>
78                     <artifactId>spotless-maven-plugin</artifactId>
79                     <version>1.26.1</version>
80                     <configuration>
81                         <java>
82                             <importOrder>
83                                 <order>com,java,javax,org</order>
84                             </importOrder>
85                         </java>
86                     </configuration>
87                     <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven
88                          use mvn spotless:apply to rewrite source files
89                          use mvn spotless:check to validate source files -->
90                 </plugin>
91                 <plugin>
92                     <groupId>org.sonarsource.scanner.maven</groupId>
93                     <artifactId>sonar-maven-plugin</artifactId>
94                     <version>${sonar.scanner.version}</version>
95                 </plugin>
96             </plugins>
97         </pluginManagement>
98     </build>
99
100 </project>