Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | ================================================================================ |
| 4 | Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 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 | |
| 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> |
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 | 21ec33e | 2017-11-25 06:17:09 +0000 | [diff] [blame^] | 32 | <version>1.2.0-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> |
Lusheng Ji | 310c9c1 | 2017-10-13 21:45:18 +0000 | [diff] [blame] | 36 | <module>scripts</module> |
Tommy Carpenter | c3a485a | 2017-09-20 15:11:00 -0400 | [diff] [blame] | 37 | <module>onap-dcae-cbs-docker-client</module> |
Alex Shatov | 8b28e65 | 2017-09-20 17:27:25 -0400 | [diff] [blame] | 38 | <module>onap-dcae-dcaepolicy-lib</module> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 39 | <module>python-discovery-client</module> |
| 40 | <module>python-dockering</module> |
Lusheng Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 41 | </modules> |
| 42 | |
Lusheng Ji | 88648fc | 2017-09-20 02:18:20 +0000 | [diff] [blame] | 43 | <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 Ji | 5bc79f4 | 2017-08-29 14:20:46 +0000 | [diff] [blame] | 96 | </project> |