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