blob: d6fbcd98d54ad53979ec8fb48b80e5850694c182 [file] [log] [blame]
Claudio David Gasparini35b2b442020-12-01 14:53:40 +01001<?xml version="1.0" encoding="UTF-8"?>
shivasubedi8df61a92021-06-16 14:43:18 +01002<!--
3 ============LICENSE_START=======================================================
4 Copyright (C) 2020 Pantheon.tech
lukegleeson7e243c92023-04-20 15:32:12 +01005 Modifications Copyright (C) 2023 Nordix Foundation
shivasubedi8df61a92021-06-16 14:43:18 +01006 ================================================================================
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-->
22
Claudio David Gasparini35b2b442020-12-01 14:53:40 +010023<project xmlns="http://maven.apache.org/POM/4.0.0"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <groupId>org.onap.cps</groupId>
28 <artifactId>checkstyle</artifactId>
mpriyank08bcac32024-12-02 14:26:03 +000029 <version>3.6.0-SNAPSHOT</version>
Claudio David Gasparini42d31ec2020-12-07 08:39:56 +010030
lukegleeson165e3b82022-03-08 11:41:52 +000031 <profiles>
32 <profile>
33 <id>Windows</id>
34 <activation>
35 <os>
36 <family>Windows</family>
37 </os>
38 </activation>
39 <properties>
40 <script.executor>python</script.executor>
41 </properties>
42 </profile>
43 <profile>
44 <id>unix</id>
45 <activation>
46 <os>
47 <family>unix</family>
48 </os>
49 </activation>
50 <properties>
51 <script.executor>python3</script.executor>
52 </properties>
53 </profile>
54 </profiles>
55
Claudio David Gasparini42d31ec2020-12-07 08:39:56 +010056 <properties>
sourabh_sourabh00da0af2024-11-13 13:42:42 +000057 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
Claudio David Gasparini42d31ec2020-12-07 08:39:56 +010058 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
Claudio David Gasparinid45b2dc2021-01-13 13:28:07 +010059 <sonar.skip>true</sonar.skip>
Claudio David Gasparini42d31ec2020-12-07 08:39:56 +010060 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
61 </properties>
62
emaclee6cfd73e2022-03-24 10:10:37 +000063 <build>
64 <pluginManagement>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-deploy-plugin</artifactId>
sourabh_sourabh1bb36392024-11-13 12:54:17 +000069 <version>3.1.2</version>
emaclee6cfd73e2022-03-24 10:10:37 +000070 </plugin>
71 </plugins>
72 </pluginManagement>
lukegleeson165e3b82022-03-08 11:41:52 +000073 <plugins>
74 <plugin>
75 <groupId>org.codehaus.mojo</groupId>
76 <artifactId>exec-maven-plugin</artifactId>
77 <version>1.6.0</version>
78 <executions>
79 <execution>
80 <id>copyright-check</id>
81 <phase>verify</phase>
82 <goals>
83 <goal>exec</goal>
84 </goals>
85 <configuration>
86 <executable>${script.executor}</executable>
87 <workingDirectory>../checkstyle/src/main/</workingDirectory>
88 <arguments>
89 <argument>CopyrightCheck.py</argument>
90 <argument>resources/project-committers-config.csv</argument>
91 <argument>resources/copyright-template.txt</argument>
92 <argument>resources/ignore-files-config.csv</argument>
93 </arguments>
lukegleeson08aa7c32022-04-07 11:37:39 +010094 <successCodes>
95 <successCode>0</successCode>
96 <successCode>1</successCode>
97 </successCodes>
lukegleeson165e3b82022-03-08 11:41:52 +000098 </configuration>
99 </execution>
100 </executions>
101 </plugin>
102 </plugins>
103 </build>
ToineSiebelink73f01b72022-04-01 09:00:44 +0100104
105 <distributionManagement>
106 <repository>
107 <id>ecomp-releases</id>
108 <name>ECOMP Release Repository</name>
sourabh_sourabh00da0af2024-11-13 13:42:42 +0000109 <url>${onap.nexus.url}${releaseNexusPath}</url>
ToineSiebelink73f01b72022-04-01 09:00:44 +0100110 </repository>
111 <snapshotRepository>
112 <id>ecomp-snapshots</id>
113 <name>ECOMP Snapshot Repository</name>
sourabh_sourabh00da0af2024-11-13 13:42:42 +0000114 <url>${onap.nexus.url}${snapshotNexusPath}</url>
ToineSiebelink73f01b72022-04-01 09:00:44 +0100115 </snapshotRepository>
116 </distributionManagement>
Claudio David Gasparini35b2b442020-12-01 14:53:40 +0100117</project>