Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | ================================================================================ |
vagrant | c1e664e | 2018-07-31 19:05:35 +0000 | [diff] [blame] | 4 | Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 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 |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 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. |
| 17 | ============LICENSE_END========================================================= |
| 18 | |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 19 | --> |
| 20 | |
| 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> |
| 23 | <parent> |
vagrant | c1e664e | 2018-07-31 19:05:35 +0000 | [diff] [blame] | 24 | |
vagrant | 21ec33e | 2017-11-25 06:17:09 +0000 | [diff] [blame] | 25 | <groupId>org.onap</groupId> |
| 26 | <artifactId>dcaegen2</artifactId> |
| 27 | <version>1.2.0-SNAPSHOT</version> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 28 | </parent> |
Lusheng Ji | 88648fc | 2017-09-20 02:18:20 +0000 | [diff] [blame] | 29 | <groupId>org.onap.dcaegen2.utils</groupId> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 30 | <artifactId>utils</artifactId> |
Jessica Wagantall | eee6ffd | 2017-09-08 11:33:12 -0700 | [diff] [blame] | 31 | <name>dcaegen2-utils</name> |
vagrant | c1e664e | 2018-07-31 19:05:35 +0000 | [diff] [blame] | 32 | <version>1.2.1-SNAPSHOT</version> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 33 | <url>http://maven.apache.org</url> |
| 34 | <packaging>pom</packaging> |
| 35 | <modules> |
Tommy Carpenter | c3a485a | 2017-09-20 15:11:00 -0400 | [diff] [blame] | 36 | <module>onap-dcae-cbs-docker-client</module> |
Alex Shatov | 8b28e65 | 2017-09-20 17:27:25 -0400 | [diff] [blame] | 37 | <module>onap-dcae-dcaepolicy-lib</module> |
vagrant | c1e664e | 2018-07-31 19:05:35 +0000 | [diff] [blame] | 38 | <module>scripts</module> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 39 | </modules> |
| 40 | |
Lusheng Ji | 88648fc | 2017-09-20 02:18:20 +0000 | [diff] [blame] | 41 | <properties> |
| 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Lusheng Ji | 88648fc | 2017-09-20 02:18:20 +0000 | [diff] [blame] | 43 | <!-- customize the SONARQUBE URL --> |
| 44 | <sonar.host.url>http://localhost:9000</sonar.host.url> |
Andrew Gauld | 373f0f3 | 2018-02-21 11:14:46 -0500 | [diff] [blame] | 45 | <!-- taken care of in the children --> |
| 46 | <sonar.exclusions>**/*.py</sonar.exclusions> |
Lusheng Ji | 88648fc | 2017-09-20 02:18:20 +0000 | [diff] [blame] | 47 | </properties> |
| 48 | <build> |
| 49 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 50 | <pluginManagement> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <groupId>org.codehaus.mojo</groupId> |
| 54 | <artifactId>exec-maven-plugin</artifactId> |
| 55 | <version>1.2.1</version> |
| 56 | <configuration> |
| 57 | <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable> |
| 58 | <environmentVariables> |
| 59 | <!-- make mvn properties as env for our script --> |
| 60 | <!-- make mvn properties as env for our script --> |
| 61 | <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |
| 62 | <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID> |
| 63 | <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION> |
| 64 | <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY> |
| 65 | <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD> |
| 66 | <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD> |
| 67 | <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID> |
| 68 | <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.snapshot}</MVN_DOCKERREGISTRY_SNAPSHOT> |
| 69 | <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE> |
| 70 | <MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID>${onap.nexus.dockerregistry.snapshot.serverid}</MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID> |
| 71 | <MVN_DOCKERREGISTRY_RELEASE_SERVERID>${onap.nexus.dockerregistry.release.serverid}</MVN_DOCKERREGISTRY_RELEASE_SERVERID> |
| 72 | <MVN_PYPISERVER_BASEURL>${onap.nexus.pypiserver.baseurl}</MVN_PYPISERVER_BASEURL> |
| 73 | <MVN_PYPISERVER_SERVERID>${onap.nexus.pypiserver.serverid}</MVN_PYPISERVER_SERVERID> |
| 74 | </environmentVariables> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </pluginManagement> |
| 79 | </build> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 80 | </project> |