blob: c03e65ad81950f3339872925f7bdfb6fcc2b8fcc [file] [log] [blame]
Lusheng Ji5bc79f42017-08-29 14:20:46 +00001<?xml version="1.0"?>
2<!--
3================================================================================
4Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5================================================================================
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
22<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">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
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>
vagrant21ec33e2017-11-25 06:17:09 +000032 <version>1.2.0-SNAPSHOT</version>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000033 <url>http://maven.apache.org</url>
34 <packaging>pom</packaging>
35 <modules>
Lusheng Ji310c9c12017-10-13 21:45:18 +000036 <module>scripts</module>
Tommy Carpenterc3a485a2017-09-20 15:11:00 -040037 <module>onap-dcae-cbs-docker-client</module>
Alex Shatov8b28e652017-09-20 17:27:25 -040038 <module>onap-dcae-dcaepolicy-lib</module>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000039 <module>python-discovery-client</module>
40 <module>python-dockering</module>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000041 </modules>
42
Lusheng Ji88648fc2017-09-20 02:18:20 +000043 <properties>
44 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
45 <sonar.skip>true</sonar.skip>
46 <sonar.sources>*/</sonar.sources>
47 <sonar.junit.reportsPath>**/xunit-results.xml</sonar.junit.reportsPath>
48 <sonar.python.coverage.reportPath>**/coverage.xml</sonar.python.coverage.reportPath>
49 <!-- customize the SONARQUBE URL -->
50 <sonar.host.url>http://localhost:9000</sonar.host.url>
51 <sonar.exclusions>tests/*</sonar.exclusions>
52 <!-- below are language dependent -->
53 <!-- for Python -->
54 <sonar.language>py</sonar.language>
55 <sonar.pluginName>Python</sonar.pluginName>
56 <sonar.inclusions>**/*.py</sonar.inclusions>
57 <!-- for JavaScaript -->
58 <!--
59 <sonar.language>js</sonar.language>
60 <sonar.pluginName>JS</sonar.pluginName>
61 <sonar.inclusions>**/*.js</sonar.inclusions>
62 -->
63 </properties>
64 <build>
65 <finalName>${project.artifactId}-${project.version}</finalName>
66 <pluginManagement>
67 <plugins>
68 <plugin>
69 <groupId>org.codehaus.mojo</groupId>
70 <artifactId>exec-maven-plugin</artifactId>
71 <version>1.2.1</version>
72 <configuration>
73 <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable>
74 <environmentVariables>
75 <!-- make mvn properties as env for our script -->
76 <!-- make mvn properties as env for our script -->
77 <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID>
78 <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID>
79 <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION>
80 <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY>
81 <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD>
82 <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD>
83 <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID>
84 <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.snapshot}</MVN_DOCKERREGISTRY_SNAPSHOT>
85 <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE>
86 <MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID>${onap.nexus.dockerregistry.snapshot.serverid}</MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID>
87 <MVN_DOCKERREGISTRY_RELEASE_SERVERID>${onap.nexus.dockerregistry.release.serverid}</MVN_DOCKERREGISTRY_RELEASE_SERVERID>
88 <MVN_PYPISERVER_BASEURL>${onap.nexus.pypiserver.baseurl}</MVN_PYPISERVER_BASEURL>
89 <MVN_PYPISERVER_SERVERID>${onap.nexus.pypiserver.serverid}</MVN_PYPISERVER_SERVERID>
90 </environmentVariables>
91 </configuration>
92 </plugin>
93 </plugins>
94 </pluginManagement>
95 </build>
Lusheng Ji5bc79f42017-08-29 14:20:46 +000096</project>