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
10 http://www.apache.org/licenses/LICENSE-2.0
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.
18 SPDX-License-Identifier: Apache-2.0
19 ============LICENSE_END=========================================================
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>
24 <groupId>org.onap.oparent</groupId>
25 <artifactId>oparent</artifactId>
26 <version>3.1.0</version>
29 <groupId>org.onap.policy.parent</groupId>
30 <artifactId>policy-parent</artifactId>
31 <version>3.2.1-SNAPSHOT</version>
32 <packaging>pom</packaging>
35 <oparent.version>3.1.0</oparent.version>
39 <module>integration</module>
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
50 Be sure to override ${project.parent.basedir} in order to find the XML file
52 mvn formatter:format spotless:apply process-sources -Dproject.parent.basedir=TODO
55 <groupId>net.revelc.code.formatter</groupId>
56 <artifactId>formatter-maven-plugin</artifactId>
57 <version>2.11.0</version>
59 <configFile>${project.parent.basedir}/onap-java-formatter.xml</configFile>
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 -->
66 <groupId>com.diffplug.spotless</groupId>
67 <artifactId>spotless-maven-plugin</artifactId>
68 <version>1.26.1</version>
72 <order>com,java,javax,org</order>
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 -->