ac72290316379773a5e24ec06857b2951935858f
[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         </plugins>
90     </build>
91     <modules>
92         <module>platform-logic</module>
93         <module>installation</module>
94     </modules>
95     <organization>
96         <name>ONAP</name>
97     </organization>
98     <version>1.3.0-SNAPSHOT</version>
99 </project>