efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | # ============LICENSE_START======================================================= |
raviteja.karumuri | b755a69 | 2022-02-14 19:43:35 +0000 | [diff] [blame] | 4 | # Copyright (C) 2019-2022 Nordix Foundation. |
Michal Jagiello | 5a3f299 | 2020-08-19 14:07:12 +0000 | [diff] [blame] | 5 | # Copyright 2020 Deutsche Telekom. All rights reserved. |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [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 | --> |
| 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"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.oparent</groupId> |
| 28 | <artifactId>oparent</artifactId> |
efiacor | a4dd256 | 2020-02-25 17:12:06 +0000 | [diff] [blame] | 29 | <version>3.0.0</version> |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | <!--- CHANGE THE FOLLOWING 3 OBJECTS for your own repo --> |
| 32 | <groupId>org.onap.dcaegen2.services</groupId> |
| 33 | <artifactId>pmsh</artifactId> |
| 34 | <name>dcaegen2-services-pm-subscription-handler</name> |
egernug | eabbdce | 2022-02-14 13:21:34 +0000 | [diff] [blame^] | 35 | <version>2.1.0-SNAPSHOT</version> |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 36 | <properties> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | <sonar.sources>.</sonar.sources> |
| 39 | <sonar.junit.reportsPath>xunit-results.xml</sonar.junit.reportsPath> |
efiacor | a4dd256 | 2020-02-25 17:12:06 +0000 | [diff] [blame] | 40 | <sonar.python.coverage.reportPaths>coverage.xml</sonar.python.coverage.reportPaths> |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 41 | <sonar.python.xunit.reportPath>xunit-results.xml</sonar.python.xunit.reportPath> |
| 42 | <sonar.language>py</sonar.language> |
| 43 | <sonar.pluginname>python</sonar.pluginname> |
efiacor | a4dd256 | 2020-02-25 17:12:06 +0000 | [diff] [blame] | 44 | <sonar.inclusions>**/*.py</sonar.inclusions> |
efiacor | 9b53268 | 2019-11-06 11:08:54 +0000 | [diff] [blame] | 45 | <sonar.exclusions>target/**,tests/**,setup.py,**/__init__.py</sonar.exclusions> |
| 46 | <exec-mvn-plugin-version>1.2.1</exec-mvn-plugin-version> |
| 47 | </properties> |
| 48 | <build> |
| 49 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 50 | <pluginManagement> |
| 51 | <plugins> |
| 52 | <!-- the following plugins are invoked from oparent, we do not need them --> |
| 53 | <plugin> |
| 54 | <groupId>org.sonatype.plugins</groupId> |
| 55 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 56 | <configuration> |
| 57 | <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-deploy-plugin</artifactId> |
| 63 | <!-- This version supports the "deployAtEnd" parameter --> |
| 64 | <configuration> |
| 65 | <skip>true</skip> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-enforcer-plugin</artifactId> |
| 71 | <configuration> |
| 72 | <skip>true</skip> |
| 73 | </configuration> |
| 74 | </plugin> |
| 75 | <!-- first disable the default Java plugins at various stages --> |
| 76 | <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares the resources |
| 77 | dir. we do not need it --> |
| 78 | <plugin> |
| 79 | <groupId>org.apache.maven.plugins</groupId> |
| 80 | <artifactId>maven-resources-plugin</artifactId> |
| 81 | <configuration> |
| 82 | <skip>true</skip> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it --> |
| 86 | <plugin> |
| 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-compiler-plugin</artifactId> |
| 89 | <configuration> |
| 90 | <skip>true</skip> |
| 91 | </configuration> |
| 92 | </plugin> |
| 93 | <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it --> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-jar-plugin</artifactId> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <id>default-jar</id> |
| 100 | </execution> |
| 101 | </executions> |
| 102 | </plugin> |
| 103 | <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under |
| 104 | target dir to ~/.m2. we do not need it --> |
| 105 | <plugin> |
| 106 | <groupId>org.apache.maven.plugins</groupId> |
| 107 | <artifactId>maven-install-plugin</artifactId> |
| 108 | <configuration> |
| 109 | <skip>true</skip> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test. |
| 113 | we do not need it --> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-surefire-plugin</artifactId> |
| 117 | <configuration> |
| 118 | <skipTests>true</skipTests> |
| 119 | </configuration> |
| 120 | </plugin> |
| 121 | <plugin> |
| 122 | <groupId>org.codehaus.mojo</groupId> |
| 123 | <artifactId>exec-maven-plugin</artifactId> |
| 124 | <version>${exec-mvn-plugin-version}</version> |
| 125 | <configuration> |
| 126 | <executable>${project.basedir}/mvn-phase-script.sh</executable> |
| 127 | <environmentVariables> |
| 128 | <!-- make mvn properties as env for our script --> |
| 129 | <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |
| 130 | <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID> |
| 131 | <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION> |
| 132 | <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY> |
| 133 | <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD> |
| 134 | <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD> |
| 135 | <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID> |
| 136 | <MVN_DOCKERREGISTRY_DAILY>${onap.nexus.dockerregistry.daily}</MVN_DOCKERREGISTRY_DAILY> |
| 137 | <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.daily}</MVN_DOCKERREGISTRY_SNAPSHOT> |
| 138 | <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE> |
| 139 | </environmentVariables> |
| 140 | </configuration> |
| 141 | </plugin> |
| 142 | </plugins> |
| 143 | </pluginManagement> |
| 144 | <plugins> |
| 145 | <!-- now we configure custom action (calling a script) at various lifecycle phases --> |
| 146 | <plugin> |
| 147 | <groupId>org.codehaus.mojo</groupId> |
| 148 | <artifactId>exec-maven-plugin</artifactId> |
| 149 | <version>${exec-mvn-plugin-version}</version> |
| 150 | <executions> |
| 151 | <execution> |
| 152 | <id>clean phase script</id> |
| 153 | <phase>clean</phase> |
| 154 | <goals> |
| 155 | <goal>exec</goal> |
| 156 | </goals> |
| 157 | <configuration> |
| 158 | <arguments> |
| 159 | <argument>__</argument> |
| 160 | <argument>clean</argument> |
| 161 | </arguments> |
| 162 | </configuration> |
| 163 | </execution> |
| 164 | <execution> |
| 165 | <id>generate-sources script</id> |
| 166 | <phase>generate-sources</phase> |
| 167 | <goals> |
| 168 | <goal>exec</goal> |
| 169 | </goals> |
| 170 | <configuration> |
| 171 | <arguments> |
| 172 | <argument>__</argument> |
| 173 | <argument>generate-sources</argument> |
| 174 | </arguments> |
| 175 | </configuration> |
| 176 | </execution> |
| 177 | <execution> |
| 178 | <id>compile script</id> |
| 179 | <phase>compile</phase> |
| 180 | <goals> |
| 181 | <goal>exec</goal> |
| 182 | </goals> |
| 183 | <configuration> |
| 184 | <arguments> |
| 185 | <argument>__</argument> |
| 186 | <argument>compile</argument> |
| 187 | </arguments> |
| 188 | </configuration> |
| 189 | </execution> |
| 190 | <execution> |
| 191 | <id>package script</id> |
| 192 | <phase>package</phase> |
| 193 | <goals> |
| 194 | <goal>exec</goal> |
| 195 | </goals> |
| 196 | <configuration> |
| 197 | <arguments> |
| 198 | <argument>__</argument> |
| 199 | <argument>package</argument> |
| 200 | </arguments> |
| 201 | </configuration> |
| 202 | </execution> |
| 203 | <execution> |
| 204 | <id>test script</id> |
| 205 | <phase>test</phase> |
| 206 | <goals> |
| 207 | <goal>exec</goal> |
| 208 | </goals> |
| 209 | <configuration> |
| 210 | <arguments> |
| 211 | <argument>__</argument> |
| 212 | <argument>test</argument> |
| 213 | </arguments> |
| 214 | </configuration> |
| 215 | </execution> |
| 216 | <execution> |
| 217 | <id>install script</id> |
| 218 | <phase>install</phase> |
| 219 | <goals> |
| 220 | <goal>exec</goal> |
| 221 | </goals> |
| 222 | <configuration> |
| 223 | <arguments> |
| 224 | <argument>__</argument> |
| 225 | <argument>install</argument> |
| 226 | </arguments> |
| 227 | </configuration> |
| 228 | </execution> |
| 229 | <execution> |
| 230 | <id>deploy script</id> |
| 231 | <phase>deploy</phase> |
| 232 | <goals> |
| 233 | <goal>exec</goal> |
| 234 | </goals> |
| 235 | <configuration> |
| 236 | <arguments> |
| 237 | <argument>__</argument> |
| 238 | <argument>deploy</argument> |
| 239 | </arguments> |
| 240 | </configuration> |
| 241 | </execution> |
| 242 | </executions> |
| 243 | </plugin> |
| 244 | </plugins> |
| 245 | </build> |
| 246 | </project> |