blob: fc1d0982d6d44e903da332227ff09ab8edf4b6fd [file] [log] [blame]
Patrick Brady83514252017-02-13 11:57:08 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell439954b2018-02-20 15:06:54 -06002<!--
3============LICENSE_START==========================================
4ONAP : APPC
5===================================================================
6Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7===================================================================
8
9Unless otherwise specified, all software contained herein is licensed
10under the Apache License, Version 2.0 (the License);
11you may not use this software except in compliance with the License.
12You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16Unless required by applicable law or agreed to in writing, software
17distributed under the License is distributed on an "AS IS" BASIS,
18WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19See the License for the specific language governing permissions and
20limitations under the License.
21
Skip Wonnell439954b2018-02-20 15:06:54 -060022============LICENSE_END============================================
23-->
Patrick Brady83514252017-02-13 11:57:08 -080024<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">
25 <parent>
Marcus G K Williamsfa2d3bf2017-09-26 13:12:01 -070026 <groupId>org.onap.ccsdk.parent</groupId>
27 <artifactId>odlparent-carbon-sr1</artifactId>
Patrick Bradyea8c76c2017-11-09 11:53:06 -080028 <version>0.1.0</version>
Patrick Brady83514252017-02-13 11:57:08 -080029 </parent>
30 <modelVersion>4.0.0</modelVersion>
31 <packaging>pom</packaging>
Patrick Brady2ad82142017-12-13 12:49:38 -080032 <groupId>org.onap.appc.deployment</groupId>
Patrick Brady83514252017-02-13 11:57:08 -080033 <artifactId>appc-docker-project</artifactId>
Jessica Wagantalld6e17ad2017-09-08 13:26:01 -070034 <name>appc-deployment</name>
Patrick Brady83514252017-02-13 11:57:08 -080035 <description>The APP-C component contains SDNC Docker Image, and installs APPC/SDNC components on top.</description>
36
Andrew Grimbergc024feb2017-03-29 12:46:41 -070037 <properties>
Patrick Brady4f1f92d2017-04-10 12:50:37 -070038 <!-- NEXUS URLS -->
39 <openecomp.nexus.host>nexus.onap.org</openecomp.nexus.host>
40 <openecomp.nexus.url>https://${openecomp.nexus.host}/content</openecomp.nexus.url>
41 <openecomp.nexus.snapshot-url>${openecomp.nexus.url}/repositories/snapshots/</openecomp.nexus.snapshot-url>
42 <openecomp.nexus.release-url>${openecomp.nexus.url}/repositories/releases/</openecomp.nexus.release-url>
Andrew Grimbergc024feb2017-03-29 12:46:41 -070043 </properties>
44
Patrick Brady83514252017-02-13 11:57:08 -080045 <!-- ================================================================================== -->
ubuntucf765862017-05-10 18:31:45 -040046 <!-- Distribution Management Sites -->
47 <!-- ================================================================================== -->
48 <distributionManagement>
49 <repository>
50 <id>ecomp-releases</id>
51 <name>openecomp-repository-releases</name>
52 <url>${openecomp.nexus.release-url}</url>
53 </repository>
54 <snapshotRepository>
55 <id>ecomp-snapshots</id>
56 <name>openecomp-repository-snapshots</name>
57 <url>${openecomp.nexus.snapshot-url}</url>
58 </snapshotRepository>
59 </distributionManagement>
60
61 <!-- ================================================================================== -->
Patrick Brady83514252017-02-13 11:57:08 -080062 <!-- Define plugin repositories -->
63 <!-- ================================================================================== -->
64 <pluginRepositories>
65 <!-- Black Duck plugin dependencies -->
66 <pluginRepository>
67 <id>JCenter</id>
68 <name>JCenter Repository</name>
69 <url>http://jcenter.bintray.com</url>
70 </pluginRepository>
71 <pluginRepository>
72 <id>Restlet</id>
73 <name>Restlet Repository</name>
74 <url>http://maven.restlet.com</url>
75 </pluginRepository>
76 </pluginRepositories>
77 <build>
78 <plugins>
Patrick Brady42ce57c2017-03-06 12:06:38 -080079 <!--maven staging plugin-->
Patrick Bradyfc4d5a02017-03-06 15:02:46 -080080 <plugin>
81 <groupId>org.sonatype.plugins</groupId>
82 <artifactId>nexus-staging-maven-plugin</artifactId>
83 <version>1.6.7</version>
84 <extensions>true</extensions>
85 <configuration>
Patrick Brady4f1f92d2017-04-10 12:50:37 -070086 <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
Patrick Bradyfc4d5a02017-03-06 15:02:46 -080087 <stagingProfileId>176c31dfe190a</stagingProfileId>
88 <serverId>ecomp-staging</serverId>
89 </configuration>
90 </plugin>
Patrick Brady83514252017-02-13 11:57:08 -080091 <!-- blackduck maven plugin -->
92 <plugin>
93 <groupId>com.blackducksoftware.integration</groupId>
94 <artifactId>hub-maven-plugin</artifactId>
95 <version>1.4.0</version>
96 <inherited>false</inherited>
97 <configuration>
98 <hubProjectName>${project.name}</hubProjectName>
99 <outputDirectory>${project.basedir}</outputDirectory>
100 </configuration>
101 <executions>
102 <execution>
103 <id>create-bdio-file</id>
104 <phase>package</phase>
105 <goals>
106 <goal>createHubOutput</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
Patrick Brady83514252017-02-13 11:57:08 -0800111 </plugins>
112 </build>
113 <modules>
114 <module>platform-logic</module>
115 <module>installation</module>
Patrick Bradyf92128c2018-03-15 17:52:35 -0400116 <module>cdt</module>
Patrick Brady83514252017-02-13 11:57:08 -0800117 </modules>
118 <organization>
Patrick Brady2ad82142017-12-13 12:49:38 -0800119 <name>ONAP</name>
Patrick Brady83514252017-02-13 11:57:08 -0800120 </organization>
Patrick Brady3f2b6522019-08-07 13:21:49 -0700121 <version>1.6.2-SNAPSHOT</version>
Patrick Brady42ce57c2017-03-06 12:06:38 -0800122</project>