blob: 4100701819d9832dd9d691959e3d353694c9e0d6 [file] [log] [blame]
Lusheng Ji5bc79f42017-08-29 14:20:46 +00001<?xml version="1.0"?>
2<!--
3================================================================================
vagrantc1e664e2018-07-31 19:05:35 +00004Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
Lusheng Ji5bc79f42017-08-29 14:20:46 +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
Lusheng Ji5bc79f42017-08-29 14:20:46 +000019-->
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>
vagrantc1e664e2018-07-31 19:05:35 +000024
vagrant21ec33e2017-11-25 06:17:09 +000025 <groupId>org.onap</groupId>
26 <artifactId>dcaegen2</artifactId>
27 <version>1.2.0-SNAPSHOT</version>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000028 </parent>
Lusheng Ji88648fc2017-09-20 02:18:20 +000029 <groupId>org.onap.dcaegen2.utils</groupId>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000030 <artifactId>utils</artifactId>
Jessica Wagantalleee6ffd2017-09-08 11:33:12 -070031 <name>dcaegen2-utils</name>
vagrantc1e664e2018-07-31 19:05:35 +000032 <version>1.2.1-SNAPSHOT</version>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000033 <url>http://maven.apache.org</url>
34 <packaging>pom</packaging>
35 <modules>
Tommy Carpenterc3a485a2017-09-20 15:11:00 -040036 <module>onap-dcae-cbs-docker-client</module>
Alex Shatov8b28e652017-09-20 17:27:25 -040037 <module>onap-dcae-dcaepolicy-lib</module>
vagrantc1e664e2018-07-31 19:05:35 +000038 <module>scripts</module>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000039 </modules>
40
Lusheng Ji88648fc2017-09-20 02:18:20 +000041 <properties>
42 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Lusheng Ji88648fc2017-09-20 02:18:20 +000043 <!-- customize the SONARQUBE URL -->
44 <sonar.host.url>http://localhost:9000</sonar.host.url>
Andrew Gauld373f0f32018-02-21 11:14:46 -050045 <!-- taken care of in the children -->
46 <sonar.exclusions>**/*.py</sonar.exclusions>
Lusheng Ji88648fc2017-09-20 02:18:20 +000047 </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 Ji5bc79f42017-08-29 14:20:46 +000080</project>