eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Pamela Dragosh | 54dc8c4 | 2021-01-26 07:52:57 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020-2021 AT&T. All rights reserved. |
adheli.tavares | 7161044 | 2024-03-12 15:50:35 +0000 | [diff] [blame] | 5 | Modifications Copyright (C) 2021, 2024 Nordix Foundation. |
eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 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 | --> |
adheli.tavares | 14f51a7 | 2024-04-12 14:55:07 +0100 | [diff] [blame^] | 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"> |
eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 25 | <groupId>org.onap.policy.parent</groupId> |
| 26 | <artifactId>policy-parent</artifactId> |
waynedunican | 30bda12 | 2024-02-16 13:07:06 +0000 | [diff] [blame] | 27 | <version>4.1.2-SNAPSHOT</version> |
eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 28 | <packaging>pom</packaging> |
| 29 | |
Pamela Dragosh | c6f09d3 | 2018-08-22 13:58:13 -0400 | [diff] [blame] | 30 | <properties> |
adheli.tavares | 14f51a7 | 2024-04-12 14:55:07 +0100 | [diff] [blame^] | 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> |
Pamela Dragosh | c6f09d3 | 2018-08-22 13:58:13 -0400 | [diff] [blame] | 34 | </properties> |
eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 35 | |
| 36 | <modules> |
adheli.tavares | 14f51a7 | 2024-04-12 14:55:07 +0100 | [diff] [blame^] | 37 | <module>checkstyle</module> |
liamfallon | 1233214 | 2021-07-15 14:59:06 +0100 | [diff] [blame] | 38 | <module>resources</module> |
eikrwaq | 5eb9cfd | 2018-05-22 09:48:30 +0100 | [diff] [blame] | 39 | <module>integration</module> |
| 40 | </modules> |
Pamela Dragosh | d3e3903 | 2019-10-04 16:45:50 -0400 | [diff] [blame] | 41 | |
adheli.tavares | 14f51a7 | 2024-04-12 14:55:07 +0100 | [diff] [blame^] | 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 | |
Pamela Dragosh | d3e3903 | 2019-10-04 16:45:50 -0400 | [diff] [blame] | 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 | |
Pamela Dragosh | 4b48d37 | 2019-10-17 10:28:38 -0400 | [diff] [blame] | 61 | Be sure to override ${project.parent.basedir} in order to find the XML file |
| 62 | |
liamfallon | 7c5702f | 2022-09-16 20:06:13 +0100 | [diff] [blame] | 63 | mvn formatter:format spotless:apply process-sources -Dproject.parent.basedir=<basedir> |
Pamela Dragosh | d3e3903 | 2019-10-04 16:45:50 -0400 | [diff] [blame] | 64 | --> |
| 65 | <plugin> |
| 66 | <groupId>net.revelc.code.formatter</groupId> |
| 67 | <artifactId>formatter-maven-plugin</artifactId> |
HOCKLA | 4b7e270 | 2019-12-10 09:54:48 -0600 | [diff] [blame] | 68 | <version>2.11.0</version> |
Pamela Dragosh | d3e3903 | 2019-10-04 16:45:50 -0400 | [diff] [blame] | 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> |
HOCKLA | 4b7e270 | 2019-12-10 09:54:48 -0600 | [diff] [blame] | 79 | <version>1.26.1</version> |
Pamela Dragosh | d3e3903 | 2019-10-04 16:45:50 -0400 | [diff] [blame] | 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> |
adheli.tavares | 14f51a7 | 2024-04-12 14:55:07 +0100 | [diff] [blame^] | 91 | <plugin> |
| 92 | <groupId>org.sonarsource.scanner.maven</groupId> |
| 93 | <artifactId>sonar-maven-plugin</artifactId> |
| 94 | <version>${sonar.scanner.version}</version> |
| 95 | </plugin> |
Pamela Dragosh | d3e3903 | 2019-10-04 16:45:50 -0400 | [diff] [blame] | 96 | </plugins> |
| 97 | </pluginManagement> |
| 98 | </build> |
| 99 | |
Pamela Dragosh | fb1af89 | 2018-08-27 13:51:57 -0400 | [diff] [blame] | 100 | </project> |