| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ============LICENSE_START======================================================= |
| Copyright (c) 2021-2024 Nordix Foundation. |
| Modifications Copyright (C) 2021 Bell Canada. |
| ================================================================================ |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| SPDX-License-Identifier: Apache-2.0 |
| ============LICENSE_END========================================================= |
| --> |
| |
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <organization> |
| <name>ONAP - CPS</name> |
| <url>http://www.onap.org/</url> |
| </organization> |
| |
| <modules> |
| <module>dmi-service</module> |
| <module>dmi-stub</module> |
| </modules> |
| |
| <groupId>org.onap.cps</groupId> |
| <artifactId>ncmp-dmi-plugin</artifactId> |
| <version>1.6.0-SNAPSHOT</version> |
| <name>ncmp-dmi-plugin</name> |
| <description>DMI Plugin Service</description> |
| <packaging>pom</packaging> |
| |
| <properties> |
| <!-- Set UTF-8 encoding for consistent builds across platforms --> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| |
| <!-- Application and Docker Configuration --> |
| <base.image>${docker.pull.registry}/onap/integration-java17:12.0.0</base.image> |
| <image.tag>${project.version}-${maven.build.timestamp}</image.tag> |
| |
| <!-- Project Versioning and Timestamp --> |
| <cps.version>3.5.5-SNAPSHOT</cps.version> |
| <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
| |
| <!-- Code Quality and Dependency Management --> |
| <checkstyle.config.location>${project.basedir}</checkstyle.config.location> |
| <maven.checkstyle.plugin.version>3.3.1</maven.checkstyle.plugin.version> |
| <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> |
| <maven.compiler.source>17</maven.compiler.source> |
| <maven.compiler.target>17</maven.compiler.target> |
| <maven.dependency.plugin.version>3.7.1</maven.dependency.plugin.version> |
| <maven.deploy.plugin.version>3.1.2</maven.deploy.plugin.version> |
| |
| <!-- ONAP Nexus Repository Configuration --> |
| <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
| <nexusproxy>https://nexus.onap.org</nexusproxy> |
| <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> |
| <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> |
| </properties> |
| |
| <build> |
| <plugins> |
| <!-- Maven Dependency Plugin for unpacking resources only in the root module --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <version>${maven.dependency.plugin.version}</version> |
| <executions> |
| <execution> |
| <id>unpack-checkstyle-config</id> |
| <phase>initialize</phase> |
| <goals> |
| <goal>unpack</goal> |
| </goals> |
| <configuration> |
| <artifactItems> |
| <artifactItem> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>checkstyle</artifactId> |
| <version>${cps.version}</version> |
| <type>jar</type> |
| <overWrite>true</overWrite> |
| <outputDirectory>${project.basedir}/checkstyle</outputDirectory> |
| <includes>cps-checkstyle/**</includes> |
| </artifactItem> |
| </artifactItems> |
| </configuration> |
| <inherited>false</inherited> |
| </execution> |
| </executions> |
| </plugin> |
| <!-- Maven Checkstyle Plugin --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>${maven.checkstyle.plugin.version}</version> |
| <executions> |
| <execution> |
| <id>onap-license</id> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| <phase>process-sources</phase> |
| <configuration> |
| <configLocation>${checkstyle.config.location}/checkstyle/cps-checkstyle/check-license.xml</configLocation> |
| <includeResources>true</includeResources> |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| <includeTestResources>false</includeTestResources> |
| <sourceDirectories> |
| <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| </sourceDirectories> |
| <consoleOutput>false</consoleOutput> |
| <violationSeverity>warning</violationSeverity> |
| <failOnViolation>true</failOnViolation> |
| </configuration> |
| </execution> |
| <execution> |
| <id>cps-java-style</id> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| <phase>process-sources</phase> |
| <configuration> |
| <configLocation>${checkstyle.config.location}/checkstyle/cps-checkstyle/cps-java-style.xml</configLocation> |
| <sourceDirectories> |
| <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| </sourceDirectories> |
| <includeResources>true</includeResources> |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| <includeTestResources>true</includeTestResources> |
| <consoleOutput>false</consoleOutput> |
| <violationSeverity>warning</violationSeverity> |
| <failOnViolation>true</failOnViolation> |
| </configuration> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>checkstyle</artifactId> |
| <version>${cps.version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>${maven.deploy.plugin.version}</version> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>${maven.compiler.plugin.version}</version> |
| <configuration> |
| <encoding>${project.build.sourceEncoding}</encoding> |
| <source>17</source> |
| <target>17</target> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| |
| <distributionManagement> |
| <repository> |
| <id>ecomp-releases</id> |
| <name>ECOMP Release Repository</name> |
| <url>${onap.nexus.url}${releaseNexusPath}</url> |
| </repository> |
| <snapshotRepository> |
| <id>ecomp-snapshots</id> |
| <name>ECOMP Snapshot Repository</name> |
| <url>${onap.nexus.url}${snapshotNexusPath}</url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| </project> |