blob: 3ebb0c55946fd51bd1d1359a22fff69b5922a637 [file] [log] [blame]
Patrick Brady83514252017-02-13 11:57:08 -08001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <parent>
Marcus G K Williamsfa2d3bf2017-09-26 13:12:01 -07004 <groupId>org.onap.ccsdk.parent</groupId>
5 <artifactId>odlparent-carbon-sr1</artifactId>
Patrick Bradyea8c76c2017-11-09 11:53:06 -08006 <version>0.1.0</version>
Patrick Brady83514252017-02-13 11:57:08 -08007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>pom</packaging>
Patrick Brady2ad82142017-12-13 12:49:38 -080010 <groupId>org.onap.appc.deployment</groupId>
Patrick Brady83514252017-02-13 11:57:08 -080011 <artifactId>appc-docker-project</artifactId>
Jessica Wagantalld6e17ad2017-09-08 13:26:01 -070012 <name>appc-deployment</name>
Patrick Brady83514252017-02-13 11:57:08 -080013 <description>The APP-C component contains SDNC Docker Image, and installs APPC/SDNC components on top.</description>
14
Andrew Grimbergc024feb2017-03-29 12:46:41 -070015 <properties>
Patrick Brady4f1f92d2017-04-10 12:50:37 -070016 <!-- NEXUS URLS -->
17 <openecomp.nexus.host>nexus.onap.org</openecomp.nexus.host>
18 <openecomp.nexus.url>https://${openecomp.nexus.host}/content</openecomp.nexus.url>
19 <openecomp.nexus.snapshot-url>${openecomp.nexus.url}/repositories/snapshots/</openecomp.nexus.snapshot-url>
20 <openecomp.nexus.release-url>${openecomp.nexus.url}/repositories/releases/</openecomp.nexus.release-url>
Andrew Grimbergc024feb2017-03-29 12:46:41 -070021 </properties>
22
Patrick Brady83514252017-02-13 11:57:08 -080023 <!-- ================================================================================== -->
ubuntucf765862017-05-10 18:31:45 -040024 <!-- Distribution Management Sites -->
25 <!-- ================================================================================== -->
26 <distributionManagement>
27 <repository>
28 <id>ecomp-releases</id>
29 <name>openecomp-repository-releases</name>
30 <url>${openecomp.nexus.release-url}</url>
31 </repository>
32 <snapshotRepository>
33 <id>ecomp-snapshots</id>
34 <name>openecomp-repository-snapshots</name>
35 <url>${openecomp.nexus.snapshot-url}</url>
36 </snapshotRepository>
37 </distributionManagement>
38
39 <!-- ================================================================================== -->
Patrick Brady83514252017-02-13 11:57:08 -080040 <!-- Define plugin repositories -->
41 <!-- ================================================================================== -->
42 <pluginRepositories>
43 <!-- Black Duck plugin dependencies -->
44 <pluginRepository>
45 <id>JCenter</id>
46 <name>JCenter Repository</name>
47 <url>http://jcenter.bintray.com</url>
48 </pluginRepository>
49 <pluginRepository>
50 <id>Restlet</id>
51 <name>Restlet Repository</name>
52 <url>http://maven.restlet.com</url>
53 </pluginRepository>
54 </pluginRepositories>
55 <build>
56 <plugins>
Patrick Brady42ce57c2017-03-06 12:06:38 -080057 <!--maven staging plugin-->
Patrick Bradyfc4d5a02017-03-06 15:02:46 -080058 <plugin>
59 <groupId>org.sonatype.plugins</groupId>
60 <artifactId>nexus-staging-maven-plugin</artifactId>
61 <version>1.6.7</version>
62 <extensions>true</extensions>
63 <configuration>
Patrick Brady4f1f92d2017-04-10 12:50:37 -070064 <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
Patrick Bradyfc4d5a02017-03-06 15:02:46 -080065 <stagingProfileId>176c31dfe190a</stagingProfileId>
66 <serverId>ecomp-staging</serverId>
67 </configuration>
68 </plugin>
Patrick Brady83514252017-02-13 11:57:08 -080069 <!-- blackduck maven plugin -->
70 <plugin>
71 <groupId>com.blackducksoftware.integration</groupId>
72 <artifactId>hub-maven-plugin</artifactId>
73 <version>1.4.0</version>
74 <inherited>false</inherited>
75 <configuration>
76 <hubProjectName>${project.name}</hubProjectName>
77 <outputDirectory>${project.basedir}</outputDirectory>
78 </configuration>
79 <executions>
80 <execution>
81 <id>create-bdio-file</id>
82 <phase>package</phase>
83 <goals>
84 <goal>createHubOutput</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 <!-- license plugin -->
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>license-maven-plugin</artifactId>
93 <version>1.10</version>
94 <configuration>
95 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
96 <processStartTag>============LICENSE_START=======================================================</processStartTag>
97 <processEndTag>============LICENSE_END=========================================================</processEndTag>
98 <sectionDelimiter>================================================================================</sectionDelimiter>
99 <licenseName>apache_v2</licenseName>
100 <inceptionYear>2017</inceptionYear>
root3bdb3872017-06-16 13:46:54 -0400101 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
102 <projectName>APPC</projectName>
Patrick Brady83514252017-02-13 11:57:08 -0800103 <canUpdateCopyright>true</canUpdateCopyright>
104 <canUpdateDescription>true</canUpdateDescription>
105 <canUpdateLicense>true</canUpdateLicense>
106 <emptyLineAfterHeader>true</emptyLineAfterHeader>
107 </configuration>
108 <executions>
109 <execution>
110 <id>first</id>
111 <goals>
112 <goal>update-file-header</goal>
113 </goals>
114 <phase>process-sources</phase>
115 </execution>
116 </executions>
117 </plugin>
118 </plugins>
119 </build>
120 <modules>
121 <module>platform-logic</module>
122 <module>installation</module>
123 </modules>
124 <organization>
Patrick Brady2ad82142017-12-13 12:49:38 -0800125 <name>ONAP</name>
Patrick Brady83514252017-02-13 11:57:08 -0800126 </organization>
Jessica Wagantall95dcced2017-11-16 17:27:18 -0800127 <version>1.3.0-SNAPSHOT</version>
Patrick Brady42ce57c2017-03-06 12:06:38 -0800128</project>