| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ============LICENSE_START========================================== |
| ONAP : APPC |
| =================================================================== |
| Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
| =================================================================== |
| |
| Unless otherwise specified, all software contained herein is licensed |
| under the Apache License, Version 2.0 (the License); |
| you may not use this software except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| ============LICENSE_END============================================ |
| --> |
| <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/maven-v4_0_0.xsd"> |
| <parent> |
| <groupId>org.onap.ccsdk.parent</groupId> |
| <artifactId>odlparent-carbon-sr1</artifactId> |
| <version>0.1.0</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>pom</packaging> |
| <groupId>org.onap.appc.deployment</groupId> |
| <artifactId>appc-docker-project</artifactId> |
| <name>appc-deployment</name> |
| <description>The APP-C component contains SDNC Docker Image, and installs APPC/SDNC components on top.</description> |
| |
| <properties> |
| <!-- NEXUS URLS --> |
| <openecomp.nexus.host>nexus.onap.org</openecomp.nexus.host> |
| <openecomp.nexus.url>https://${openecomp.nexus.host}/content</openecomp.nexus.url> |
| <openecomp.nexus.snapshot-url>${openecomp.nexus.url}/repositories/snapshots/</openecomp.nexus.snapshot-url> |
| <openecomp.nexus.release-url>${openecomp.nexus.url}/repositories/releases/</openecomp.nexus.release-url> |
| </properties> |
| |
| <!-- ================================================================================== --> |
| <!-- Distribution Management Sites --> |
| <!-- ================================================================================== --> |
| <distributionManagement> |
| <repository> |
| <id>ecomp-releases</id> |
| <name>openecomp-repository-releases</name> |
| <url>${openecomp.nexus.release-url}</url> |
| </repository> |
| <snapshotRepository> |
| <id>ecomp-snapshots</id> |
| <name>openecomp-repository-snapshots</name> |
| <url>${openecomp.nexus.snapshot-url}</url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| <!-- ================================================================================== --> |
| <!-- Define plugin repositories --> |
| <!-- ================================================================================== --> |
| <pluginRepositories> |
| <!-- Black Duck plugin dependencies --> |
| <pluginRepository> |
| <id>JCenter</id> |
| <name>JCenter Repository</name> |
| <url>http://jcenter.bintray.com</url> |
| </pluginRepository> |
| <pluginRepository> |
| <id>Restlet</id> |
| <name>Restlet Repository</name> |
| <url>http://maven.restlet.com</url> |
| </pluginRepository> |
| </pluginRepositories> |
| <build> |
| <plugins> |
| <!--maven staging plugin--> |
| <plugin> |
| <groupId>org.sonatype.plugins</groupId> |
| <artifactId>nexus-staging-maven-plugin</artifactId> |
| <version>1.6.7</version> |
| <extensions>true</extensions> |
| <configuration> |
| <nexusUrl>https://${openecomp.nexus.host}</nexusUrl> |
| <stagingProfileId>176c31dfe190a</stagingProfileId> |
| <serverId>ecomp-staging</serverId> |
| </configuration> |
| </plugin> |
| <!-- blackduck maven plugin --> |
| <plugin> |
| <groupId>com.blackducksoftware.integration</groupId> |
| <artifactId>hub-maven-plugin</artifactId> |
| <version>1.4.0</version> |
| <inherited>false</inherited> |
| <configuration> |
| <hubProjectName>${project.name}</hubProjectName> |
| <outputDirectory>${project.basedir}</outputDirectory> |
| </configuration> |
| <executions> |
| <execution> |
| <id>create-bdio-file</id> |
| <phase>package</phase> |
| <goals> |
| <goal>createHubOutput</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| <modules> |
| <module>platform-logic</module> |
| <module>installation</module> |
| <module>cdt</module> |
| </modules> |
| <organization> |
| <name>ONAP</name> |
| </organization> |
| <version>1.8.0-SNAPSHOT</version> |
| </project> |