Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | ================================================================================ |
Tommy Carpenter | 3b60a76 | 2019-02-20 07:34:09 -0500 | [diff] [blame] | 4 | Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +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 | |
| 19 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 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> |
Jessica Wagantall | b0da16e | 2017-11-20 14:56:39 -0800 | [diff] [blame] | 24 | <groupId>org.onap</groupId> |
Tommy Carpenter | 70c3c86 | 2017-10-06 09:48:12 -0400 | [diff] [blame] | 25 | <artifactId>dcaegen2</artifactId> |
vagrant | 7aa010c | 2017-11-25 06:46:38 +0000 | [diff] [blame] | 26 | <version>1.2.0-SNAPSHOT</version> |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | <!--- CHANGE THE FOLLOWING 3 OBJECTS for your own repo --> |
| 29 | <groupId>org.onap.dcaegen2.platform</groupId> |
| 30 | <artifactId>configbinding</artifactId> |
Jessica Wagantall | 5960064 | 2017-09-08 14:47:42 -0700 | [diff] [blame] | 31 | <name>dcaegen2-platform-configbinding</name> |
Tommy Carpenter | 3b60a76 | 2019-02-20 07:34:09 -0500 | [diff] [blame] | 32 | <version>2.3.0-SNAPSHOT</version> |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 33 | <url>http://maven.apache.org</url> |
Lusheng Ji | ea057dc | 2018-07-16 22:12:34 -0400 | [diff] [blame] | 34 | |
| 35 | <packaging>pom</packaging> |
| 36 | <modules> |
| 37 | <module>app</module> |
| 38 | </modules> |
| 39 | |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Lusheng Ji | ea057dc | 2018-07-16 22:12:34 -0400 | [diff] [blame] | 42 | <!-- customize the SONARQUBE URL --> |
| 43 | <sonar.host.url>http://localhost:9000</sonar.host.url> |
| 44 | <!-- taken care of in the children --> |
| 45 | <sonar.exclusions>**</sonar.exclusions> |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 46 | </properties> |
| 47 | <build> |
| 48 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 49 | <pluginManagement> |
| 50 | <plugins> |
Lusheng Ji | c2a234c | 2017-09-06 00:06:30 +0000 | [diff] [blame] | 51 | <plugin> |
| 52 | <groupId>org.codehaus.mojo</groupId> |
| 53 | <artifactId>exec-maven-plugin</artifactId> |
| 54 | <version>1.2.1</version> |
| 55 | <configuration> |
| 56 | <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable> |
| 57 | <environmentVariables> |
| 58 | <!-- make mvn properties as env for our script --> |
Lusheng Ji | ea057dc | 2018-07-16 22:12:34 -0400 | [diff] [blame] | 59 | <!-- make mvn properties as env for our script --> |
Lusheng Ji | c2a234c | 2017-09-06 00:06:30 +0000 | [diff] [blame] | 60 | <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |
| 61 | <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID> |
| 62 | <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION> |
| 63 | <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY> |
| 64 | <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD> |
| 65 | <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD> |
| 66 | <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID> |
Lusheng Ji | ea057dc | 2018-07-16 22:12:34 -0400 | [diff] [blame] | 67 | <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.snapshot}</MVN_DOCKERREGISTRY_SNAPSHOT> |
Lusheng Ji | c2a234c | 2017-09-06 00:06:30 +0000 | [diff] [blame] | 68 | <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE> |
Lusheng Ji | ea057dc | 2018-07-16 22:12:34 -0400 | [diff] [blame] | 69 | <MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID>${onap.nexus.dockerregistry.snapshot.serverid}</MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID> |
| 70 | <MVN_DOCKERREGISTRY_RELEASE_SERVERID>${onap.nexus.dockerregistry.release.serverid}</MVN_DOCKERREGISTRY_RELEASE_SERVERID> |
| 71 | <MVN_PYPISERVER_BASEURL>${onap.nexus.pypiserver.baseurl}</MVN_PYPISERVER_BASEURL> |
| 72 | <MVN_PYPISERVER_SERVERID>${onap.nexus.pypiserver.serverid}</MVN_PYPISERVER_SERVERID> |
Lusheng Ji | c2a234c | 2017-09-06 00:06:30 +0000 | [diff] [blame] | 73 | </environmentVariables> |
| 74 | </configuration> |
| 75 | </plugin> |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 76 | </plugins> |
| 77 | </pluginManagement> |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 78 | </build> |
Lusheng Ji | ea057dc | 2018-07-16 22:12:34 -0400 | [diff] [blame] | 79 | |
Lusheng Ji | bad9c3e | 2017-09-01 03:06:57 +0000 | [diff] [blame] | 80 | </project> |