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 | ================================================================================ |
Jack Lucas | 5caf165 | 2019-02-08 14:21:58 -0500 | [diff] [blame] | 6 | Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 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> |
Lusheng Ji | 6d381a5 | 2018-03-22 14:27:41 -0400 | [diff] [blame] | 39 | <module>redis-cluster-container</module> |
Jack Lucas | 16a554c | 2018-03-23 19:30:49 -0400 | [diff] [blame] | 40 | <module>cm-container</module> |
Jack Lucas | 230ae89 | 2018-03-27 00:04:46 -0400 | [diff] [blame] | 41 | <module>k8s-bootstrap-container</module> |
Lusheng Ji | 6c11793 | 2018-04-03 15:07:58 -0400 | [diff] [blame] | 42 | <module>tca-cdap-container</module> |
Jack Lucas | 2832ba2 | 2018-04-20 13:22:05 +0000 | [diff] [blame] | 43 | <module>healthcheck-container</module> |
Jack Lucas | 22b3585 | 2018-09-10 12:39:53 +0000 | [diff] [blame] | 44 | <module>tls-init-container</module> |
Jack Lucas | 5caf165 | 2019-02-08 14:21:58 -0500 | [diff] [blame] | 45 | <module>consul-loader-container</module> |
Jack Lucas | f4a0083 | 2019-03-29 16:45:20 -0400 | [diff] [blame] | 46 | <module>multisite-init-container</module> |
Jack Lucas | a1647b2 | 2019-08-13 09:51:16 -0400 | [diff] [blame^] | 47 | <module>dcae-k8s-cleanup-container</module> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 48 | </modules> |
Vijay Venkatesh Kumar | d2c8212 | 2019-04-05 00:38:59 +0000 | [diff] [blame] | 49 | <!-- <profiles> |
Donald Hunter | 0912b37 | 2018-09-13 11:44:43 +0100 | [diff] [blame] | 50 | <profile> |
| 51 | <id>pnda</id> |
Vijay Venkatesh Kumar | 5ed51ae | 2019-03-11 00:54:54 +0000 | [diff] [blame] | 52 | <activation><activeByDefault>false</activeByDefault></activation> |
Donald Hunter | 0912b37 | 2018-09-13 11:44:43 +0100 | [diff] [blame] | 53 | <modules> |
| 54 | <module>pnda-mirror-container</module> |
| 55 | <module>pnda-bootstrap-container</module> |
| 56 | </modules> |
| 57 | </profile> |
| 58 | </profiles> |
Vijay Venkatesh Kumar | d2c8212 | 2019-04-05 00:38:59 +0000 | [diff] [blame] | 59 | --> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 60 | |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 61 | <properties> |
| 62 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 63 | <sonar.skip>true</sonar.skip> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 64 | <sonar.sources>.</sonar.sources> |
| 65 | <!-- customize the SONARQUBE URL --> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 66 | <!-- sonar.host.url>http://localhost:9000</sonar.host.url --> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 67 | <!-- below are language dependent --> |
| 68 | <!-- for Python --> |
| 69 | <sonar.language>py</sonar.language> |
| 70 | <sonar.pluginName>Python</sonar.pluginName> |
| 71 | <sonar.inclusions>**/*.py</sonar.inclusions> |
| 72 | <!-- for JavaScaript --> |
| 73 | <!-- |
| 74 | <sonar.language>js</sonar.language> |
| 75 | <sonar.pluginName>JS</sonar.pluginName> |
| 76 | <sonar.inclusions>**/*.js</sonar.inclusions> |
| 77 | --> |
| 78 | </properties> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 79 | <build> |
| 80 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 81 | <pluginManagement> |
| 82 | <plugins> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 83 | <!-- the following plugins are invoked from oparent, we do not need them --> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 84 | <plugin> |
| 85 | <groupId>org.sonatype.plugins</groupId> |
| 86 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 87 | <version>1.6.7</version> |
| 88 | <configuration> |
| 89 | <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 90 | <skip>true</skip> |
| 91 | </configuration> |
| 92 | </plugin> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.maven.plugins</groupId> |
| 95 | <artifactId>maven-deploy-plugin</artifactId> |
| 96 | <!-- This version supports the "deployAtEnd" parameter --> |
| 97 | <version>2.8</version> |
| 98 | <configuration> |
| 99 | <skip>true</skip> |
| 100 | </configuration> |
| 101 | </plugin> |
| 102 | <!-- first disable the default Java plugins at various stages --> |
Jack Lucas | 5caf165 | 2019-02-08 14:21:58 -0500 | [diff] [blame] | 103 | <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 104 | the resources dir. we do not need it --> |
| 105 | <plugin> |
| 106 | <groupId>org.apache.maven.plugins</groupId> |
| 107 | <artifactId>maven-resources-plugin</artifactId> |
| 108 | <version>2.6</version> |
| 109 | <configuration> |
| 110 | <skip>true</skip> |
| 111 | </configuration> |
| 112 | </plugin> |
| 113 | <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it --> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-compiler-plugin</artifactId> |
| 117 | <version>3.1</version> |
| 118 | <configuration> |
| 119 | <skip>true</skip> |
| 120 | </configuration> |
| 121 | </plugin> |
| 122 | <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it --> |
| 123 | <plugin> |
| 124 | <groupId>org.apache.maven.plugins</groupId> |
| 125 | <artifactId>maven-jar-plugin</artifactId> |
| 126 | <version>2.4</version> |
| 127 | <executions> |
| 128 | <execution> |
| 129 | <id>default-jar</id> |
| 130 | <phase/> |
| 131 | </execution> |
| 132 | </executions> |
| 133 | </plugin> |
Jack Lucas | 5caf165 | 2019-02-08 14:21:58 -0500 | [diff] [blame] | 134 | <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 135 | target dir to ~/.m2. we do not need it --> |
| 136 | <plugin> |
| 137 | <groupId>org.apache.maven.plugins</groupId> |
| 138 | <artifactId>maven-install-plugin</artifactId> |
| 139 | <version>2.4</version> |
| 140 | <configuration> |
| 141 | <skip>true</skip> |
| 142 | </configuration> |
| 143 | </plugin> |
| 144 | <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test. |
| 145 | we do not need it --> |
| 146 | <plugin> |
| 147 | <groupId>org.apache.maven.plugins</groupId> |
| 148 | <artifactId>maven-surefire-plugin</artifactId> |
| 149 | <version>2.12.4</version> |
| 150 | <configuration> |
| 151 | <skipTests>true</skipTests> |
| 152 | </configuration> |
| 153 | </plugin> |
| 154 | <plugin> |
| 155 | <groupId>org.codehaus.mojo</groupId> |
| 156 | <artifactId>exec-maven-plugin</artifactId> |
| 157 | <version>1.2.1</version> |
| 158 | <configuration> |
| 159 | <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable> |
| 160 | <environmentVariables> |
| 161 | <!-- make mvn properties as env for our script --> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 162 | <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |
| 163 | <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID> |
| 164 | <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 165 | <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY> |
| 166 | <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD> |
| 167 | <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD> |
| 168 | <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 169 | <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.snapshot}</MVN_DOCKERREGISTRY_SNAPSHOT> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 170 | <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE> |
Lusheng Ji | d92d448 | 2017-09-21 05:42:28 +0000 | [diff] [blame] | 171 | <MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID>${onap.nexus.dockerregistry.snapshot.serverid}</MVN_DOCKERREGISTRY_SNAPSHOT_SERVERID> |
| 172 | <MVN_DOCKERREGISTRY_RELEASE_SERVERID>${onap.nexus.dockerregistry.release.serverid}</MVN_DOCKERREGISTRY_RELEASE_SERVERID> |
| 173 | <MVN_PYPISERVER_BASEURL>${onap.nexus.pypiserver.baseurl}</MVN_PYPISERVER_BASEURL> |
| 174 | <MVN_PYPISERVER_SERVERID>${onap.nexus.pypiserver.serverid}</MVN_PYPISERVER_SERVERID> |
Lusheng Ji | c38ca2f | 2017-09-11 20:11:29 +0000 | [diff] [blame] | 175 | </environmentVariables> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 176 | </configuration> |
| 177 | </plugin> |
| 178 | </plugins> |
| 179 | </pluginManagement> |
Andrew Gauld | b34cbd0 | 2017-08-24 16:46:17 -0400 | [diff] [blame] | 180 | </build> |
| 181 | </project> |