Deployment onap rename
[appc/deployment.git] / pom.xml
1 <?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>
4         <groupId>org.onap.ccsdk.parent</groupId>
5         <artifactId>odlparent-carbon-sr1</artifactId>
6         <version>0.1.0</version>
7     </parent>
8     <modelVersion>4.0.0</modelVersion>
9     <packaging>pom</packaging>
10     <groupId>org.onap.appc.deployment</groupId>
11     <artifactId>appc-docker-project</artifactId>
12     <name>appc-deployment</name>
13     <description>The APP-C component contains SDNC Docker Image, and installs APPC/SDNC components on top.</description>
14
15     <properties>
16         <!-- 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>
21     </properties>
22
23     <!-- ================================================================================== -->
24     <!-- 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     <!-- ================================================================================== -->
40     <!-- 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>
57             <!--maven staging plugin-->
58                 <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>
64                         <nexusUrl>https://${openecomp.nexus.host}</nexusUrl>
65                         <stagingProfileId>176c31dfe190a</stagingProfileId>
66                         <serverId>ecomp-staging</serverId>
67                     </configuration>
68                 </plugin>
69             <!-- 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>
101                     <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
102                     <projectName>APPC</projectName>
103                     <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>
125         <name>ONAP</name>
126     </organization>
127     <version>1.3.0-SNAPSHOT</version>
128 </project>