Maven staging url
[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.openecomp.sdnc.core</groupId>
5         <artifactId>root</artifactId>
6         <version>1.0.0</version>
7     </parent>
8     <modelVersion>4.0.0</modelVersion>
9     <packaging>pom</packaging>
10     <groupId>org.openecomp.appc.deployment</groupId>
11     <artifactId>appc-docker-project</artifactId>
12     <name>APPC Docker Project</name>
13     <description>The APP-C component contains SDNC Docker Image, and installs APPC/SDNC components on top.</description>
14
15     <!-- ================================================================================== -->
16     <!-- Define plugin repositories -->
17     <!-- ================================================================================== -->
18     <pluginRepositories>
19         <!-- Black Duck plugin dependencies -->
20         <pluginRepository>
21             <id>JCenter</id>
22             <name>JCenter Repository</name>
23             <url>http://jcenter.bintray.com</url>
24         </pluginRepository>
25         <pluginRepository>
26             <id>Restlet</id>
27             <name>Restlet Repository</name>
28             <url>http://maven.restlet.com</url>
29         </pluginRepository>
30     </pluginRepositories>
31     <build>
32         <plugins>
33             <!--maven staging plugin-->
34                 <plugin>
35                     <groupId>org.sonatype.plugins</groupId>
36                     <artifactId>nexus-staging-maven-plugin</artifactId>
37                     <version>1.6.7</version>
38                     <extensions>true</extensions>
39                     <configuration>
40                         <nexusUrl>https://nexus.openecomp.org/content/repositories/staging/</nexusUrl>
41                         <stagingProfileId>176c31dfe190a</stagingProfileId>
42                         <serverId>ecomp-staging</serverId>
43                     </configuration>
44                 </plugin>
45             <!-- blackduck maven plugin -->
46             <plugin>
47                 <groupId>com.blackducksoftware.integration</groupId>
48                 <artifactId>hub-maven-plugin</artifactId>
49                 <version>1.4.0</version>
50                 <inherited>false</inherited>
51                 <configuration>
52                     <hubProjectName>${project.name}</hubProjectName>
53                     <outputDirectory>${project.basedir}</outputDirectory>
54                 </configuration>
55                 <executions>
56                     <execution>
57                         <id>create-bdio-file</id>
58                         <phase>package</phase>
59                         <goals>
60                             <goal>createHubOutput</goal>
61                         </goals>
62                     </execution>
63                 </executions>
64             </plugin>
65             <!-- license plugin -->
66             <plugin>
67                 <groupId>org.codehaus.mojo</groupId>
68                 <artifactId>license-maven-plugin</artifactId>
69                 <version>1.10</version>
70                 <configuration>
71                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
72                     <processStartTag>============LICENSE_START=======================================================</processStartTag>
73                     <processEndTag>============LICENSE_END=========================================================</processEndTag>
74                     <sectionDelimiter>================================================================================</sectionDelimiter>
75                     <licenseName>apache_v2</licenseName>
76                     <inceptionYear>2017</inceptionYear>
77                     <organizationName>OpenECOMP</organizationName>
78                     <projectName>openECOMP : APP-C</projectName>
79                     <canUpdateCopyright>true</canUpdateCopyright>
80                     <canUpdateDescription>true</canUpdateDescription>
81                     <canUpdateLicense>true</canUpdateLicense>
82                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
83                 </configuration>
84                 <executions>
85                     <execution>
86                         <id>first</id>
87                         <goals>
88                             <goal>update-file-header</goal>
89                         </goals>
90                         <phase>process-sources</phase>
91                     </execution>
92                 </executions>
93             </plugin>
94         </plugins>
95     </build>
96     <modules>
97         <module>platform-logic</module>
98         <module>installation</module>
99     </modules>
100     <organization>
101         <name>OpenECOMP</name>
102     </organization>
103     <version>1.0.0-SNAPSHOT</version>
104 </project>