blob: ce20c9fd7b1d4d27bd4aeab632c6490363ccf8d6 [file] [log] [blame]
eikrwaq5eb9cfd2018-05-22 09:48:30 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
Pamela Dragosh81c8b332020-02-07 07:19:37 -05004 Modifications Copyright (C) 2020 AT&T. All rights reserved.
eikrwaq5eb9cfd2018-05-22 09:48:30 +01005 ================================================================================
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-->
liamfallone2f4c022018-10-31 10:50:49 +000021<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">
eikrwaq5eb9cfd2018-05-22 09:48:30 +010022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.oparent</groupId>
25 <artifactId>oparent</artifactId>
Pamela Dragosh81c8b332020-02-07 07:19:37 -050026 <version>3.0.0</version>
HOCKLA0278ad62019-12-04 11:38:24 -060027 <relativePath />
eikrwaq5eb9cfd2018-05-22 09:48:30 +010028 </parent>
29 <groupId>org.onap.policy.parent</groupId>
30 <artifactId>policy-parent</artifactId>
Pamela Dragosh70aaa4b2020-05-05 11:53:20 -040031 <version>3.1.4-SNAPSHOT</version>
eikrwaq5eb9cfd2018-05-22 09:48:30 +010032 <packaging>pom</packaging>
33
Pamela Dragoshc6f09d32018-08-22 13:58:13 -040034 <properties>
Pamela Dragosh81c8b332020-02-07 07:19:37 -050035 <oparent.version>3.0.0</oparent.version>
Pamela Dragoshc6f09d32018-08-22 13:58:13 -040036 </properties>
eikrwaq5eb9cfd2018-05-22 09:48:30 +010037
38 <modules>
39 <module>integration</module>
40 </modules>
Pamela Dragoshd3e39032019-10-04 16:45:50 -040041
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
Pamela Dragosh4b48d372019-10-17 10:28:38 -040050 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
Pamela Dragoshd3e39032019-10-04 16:45:50 -040053 -->
54 <plugin>
55 <groupId>net.revelc.code.formatter</groupId>
56 <artifactId>formatter-maven-plugin</artifactId>
HOCKLA4b7e2702019-12-10 09:54:48 -060057 <version>2.11.0</version>
Pamela Dragoshd3e39032019-10-04 16:45:50 -040058 <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>
HOCKLA4b7e2702019-12-10 09:54:48 -060068 <version>1.26.1</version>
Pamela Dragoshd3e39032019-10-04 16:45:50 -040069 <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
Pamela Dragoshfb1af892018-08-27 13:51:57 -040084</project>