blob: d5069b01b183cc5c760d5de94745ab49a29e577f [file] [log] [blame]
Lusheng Jibad9c3e2017-09-01 03:06:57 +00001<?xml version="1.0"?>
2<!--
3================================================================================
Tommy Carpenter3b60a762019-02-20 07:34:09 -05004Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
Lusheng Jibad9c3e2017-09-01 03:06:57 +00005================================================================================
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17============LICENSE_END=========================================================
18
19ECOMP 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 Wagantallb0da16e2017-11-20 14:56:39 -080024 <groupId>org.onap</groupId>
Tommy Carpenter70c3c862017-10-06 09:48:12 -040025 <artifactId>dcaegen2</artifactId>
vagrant7aa010c2017-11-25 06:46:38 +000026 <version>1.2.0-SNAPSHOT</version>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000027 </parent>
28 <!--- CHANGE THE FOLLOWING 3 OBJECTS for your own repo -->
29 <groupId>org.onap.dcaegen2.platform</groupId>
30 <artifactId>configbinding</artifactId>
Jessica Wagantall59600642017-09-08 14:47:42 -070031 <name>dcaegen2-platform-configbinding</name>
Tommy Carpenter3b60a762019-02-20 07:34:09 -050032 <version>2.3.0-SNAPSHOT</version>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000033 <url>http://maven.apache.org</url>
Lusheng Jiea057dc2018-07-16 22:12:34 -040034
35 <packaging>pom</packaging>
36 <modules>
37 <module>app</module>
38 </modules>
39
Lusheng Jibad9c3e2017-09-01 03:06:57 +000040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Lusheng Jiea057dc2018-07-16 22:12:34 -040042 <!-- 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 Jibad9c3e2017-09-01 03:06:57 +000046 </properties>
47 <build>
48 <finalName>${project.artifactId}-${project.version}</finalName>
49 <pluginManagement>
50 <plugins>
Lusheng Jic2a234c2017-09-06 00:06:30 +000051 <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 Jiea057dc2018-07-16 22:12:34 -040059 <!-- make mvn properties as env for our script -->
Lusheng Jic2a234c2017-09-06 00:06:30 +000060 <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 Jiea057dc2018-07-16 22:12:34 -040067 <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.snapshot}</MVN_DOCKERREGISTRY_SNAPSHOT>
Lusheng Jic2a234c2017-09-06 00:06:30 +000068 <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE>
Lusheng Jiea057dc2018-07-16 22:12:34 -040069 <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 Jic2a234c2017-09-06 00:06:30 +000073 </environmentVariables>
74 </configuration>
75 </plugin>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000076 </plugins>
77 </pluginManagement>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000078 </build>
Lusheng Jiea057dc2018-07-16 22:12:34 -040079
Lusheng Jibad9c3e2017-09-01 03:06:57 +000080</project>