Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | org.onap.dcae |
| 5 | ================================================================================ |
| 6 | Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 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> |
Lusheng Ji | 7fda900 | 2017-10-15 19:39:30 -0400 | [diff] [blame] | 24 | <groupId>org.onap</groupId> |
| 25 | <artifactId>dcaegen2</artifactId> |
| 26 | <version>1.1.0</version> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <!--- CHANGE THE FOLLOWING 3 OBJECTS for your own repo --> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 30 | <groupId>org.onap.dcaegen2.deployments</groupId> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 31 | <artifactId>deployments</artifactId> |
Lusheng Ji | 5e11184 | 2017-09-11 23:01:37 +0000 | [diff] [blame] | 32 | <name>dcaegen2-deployments</name> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 33 | |
vagrant | 379c4f5 | 2017-11-25 07:08:34 +0000 | [diff] [blame] | 34 | <version>1.2.0-SNAPSHOT</version> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 35 | <url>http://maven.apache.org</url> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 36 | <packaging>pom</packaging> |
| 37 | |
| 38 | <modules> |
| 39 | <module>bootstrap</module> |
| 40 | <module>scripts</module> |
Lusheng Ji | afe7fb0 | 2017-10-17 09:35:34 -0400 | [diff] [blame] | 41 | <module>cloud_init</module> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 42 | </modules> |
| 43 | |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 44 | <properties> |
| 45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 46 | <sonar.skip>true</sonar.skip> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 47 | <sonar.sources>.</sonar.sources> |
| 48 | <!-- customize the SONARQUBE URL --> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 49 | <!-- sonar.host.url>http://localhost:9000</sonar.host.url --> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 50 | <!-- below are language dependent --> |
| 51 | <!-- for Python --> |
| 52 | <sonar.language>py</sonar.language> |
| 53 | <sonar.pluginName>Python</sonar.pluginName> |
| 54 | <sonar.inclusions>**/*.py</sonar.inclusions> |
| 55 | <!-- for JavaScaript --> |
| 56 | <!-- |
| 57 | <sonar.language>js</sonar.language> |
| 58 | <sonar.pluginName>JS</sonar.pluginName> |
| 59 | <sonar.inclusions>**/*.js</sonar.inclusions> |
| 60 | --> |
| 61 | </properties> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 62 | <build> |
| 63 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 64 | <pluginManagement> |
| 65 | <plugins> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 66 | <!-- the following plugins are invoked from oparent, we do not need them --> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 67 | <plugin> |
| 68 | <groupId>org.sonatype.plugins</groupId> |
| 69 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 70 | <version>1.6.7</version> |
| 71 | <configuration> |
| 72 | <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 73 | <skip>true</skip> |
| 74 | </configuration> |
| 75 | </plugin> |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-deploy-plugin</artifactId> |
| 79 | <!-- This version supports the "deployAtEnd" parameter --> |
| 80 | <version>2.8</version> |
| 81 | <configuration> |
| 82 | <skip>true</skip> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | <!-- first disable the default Java plugins at various stages --> |
| 86 | <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares |
| 87 | the resources dir. we do not need it --> |
| 88 | <plugin> |
| 89 | <groupId>org.apache.maven.plugins</groupId> |
| 90 | <artifactId>maven-resources-plugin</artifactId> |
| 91 | <version>2.6</version> |
| 92 | <configuration> |
| 93 | <skip>true</skip> |
| 94 | </configuration> |
| 95 | </plugin> |
| 96 | <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it --> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-compiler-plugin</artifactId> |
| 100 | <version>3.1</version> |
| 101 | <configuration> |
| 102 | <skip>true</skip> |
| 103 | </configuration> |
| 104 | </plugin> |
| 105 | <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it --> |
| 106 | <plugin> |
| 107 | <groupId>org.apache.maven.plugins</groupId> |
| 108 | <artifactId>maven-jar-plugin</artifactId> |
| 109 | <version>2.4</version> |
| 110 | <executions> |
| 111 | <execution> |
| 112 | <id>default-jar</id> |
| 113 | <phase/> |
| 114 | </execution> |
| 115 | </executions> |
| 116 | </plugin> |
| 117 | <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under |
| 118 | target dir to ~/.m2. we do not need it --> |
| 119 | <plugin> |
| 120 | <groupId>org.apache.maven.plugins</groupId> |
| 121 | <artifactId>maven-install-plugin</artifactId> |
| 122 | <version>2.4</version> |
| 123 | <configuration> |
| 124 | <skip>true</skip> |
| 125 | </configuration> |
| 126 | </plugin> |
| 127 | <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test. |
| 128 | we do not need it --> |
| 129 | <plugin> |
| 130 | <groupId>org.apache.maven.plugins</groupId> |
| 131 | <artifactId>maven-surefire-plugin</artifactId> |
| 132 | <version>2.12.4</version> |
| 133 | <configuration> |
| 134 | <skipTests>true</skipTests> |
| 135 | </configuration> |
| 136 | </plugin> |
| 137 | <plugin> |
| 138 | <groupId>org.codehaus.mojo</groupId> |
| 139 | <artifactId>exec-maven-plugin</artifactId> |
| 140 | <version>1.2.1</version> |
| 141 | <configuration> |
| 142 | <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable> |
| 143 | <environmentVariables> |
| 144 | <!-- make mvn properties as env for our script --> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 145 | <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |
| 146 | <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID> |
| 147 | <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 148 | <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY> |
| 149 | <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD> |
| 150 | <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD> |
| 151 | <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 152 | <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.snapshot}</MVN_DOCKERREGISTRY_SNAPSHOT> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 153 | <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 154 | <MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID>${onap.nexus.dockerregistry.snapshot.serverid}</MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID> |
| 155 | <MVN_DOCKERREGISTRY_RELEASE_SERVERID>${onap.nexus.dockerregistry.release.serverid}</MVN_DOCKERREGISTRY_RELEASE_SERVERID> |
| 156 | <MVN_PYPISERVER_BASEURL>${onap.nexus.pypiserver.baseurl}</MVN_PYPISERVER_BASEURL> |
| 157 | <MVN_PYPISERVER_SERVERID>${onap.nexus.pypiserver.serverid}</MVN_PYPISERVER_SERVERID> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 158 | </environmentVariables> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 159 | </configuration> |
| 160 | </plugin> |
| 161 | </plugins> |
| 162 | </pluginManagement> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 163 | </build> |
| 164 | </project> |