Point Nexus proxy to new 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-SNAPSHOT</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     <properties>
16         <nexusproxy>https://nexus.onap.org</nexusproxy>
17         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
18         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
19         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
20     </properties>
21
22     <!-- ================================================================================== -->
23     <!-- Define plugin repositories -->
24     <!-- ================================================================================== -->
25     <pluginRepositories>
26         <!-- Black Duck plugin dependencies -->
27         <pluginRepository>
28             <id>JCenter</id>
29             <name>JCenter Repository</name>
30             <url>http://jcenter.bintray.com</url>
31         </pluginRepository>
32         <pluginRepository>
33             <id>Restlet</id>
34             <name>Restlet Repository</name>
35             <url>http://maven.restlet.com</url>
36         </pluginRepository>
37     </pluginRepositories>
38     <repositories>
39         <repository>
40             <id>ecomp-staging</id>
41             <name>ecomp Staging Repository</name>
42             <url>${nexusproxy}/${stagingNexusPath}</url>
43         </repository>
44     </repositories>
45     <build>
46         <plugins>
47             <!--maven staging plugin-->
48                 <plugin>
49                     <groupId>org.sonatype.plugins</groupId>
50                     <artifactId>nexus-staging-maven-plugin</artifactId>
51                     <version>1.6.7</version>
52                     <extensions>true</extensions>
53                     <configuration>
54                         <nexusUrl>${nexusproxy}</nexusUrl>
55                         <stagingProfileId>176c31dfe190a</stagingProfileId>
56                         <serverId>ecomp-staging</serverId>
57                     </configuration>
58                 </plugin>
59             <!-- blackduck maven plugin -->
60             <plugin>
61                 <groupId>com.blackducksoftware.integration</groupId>
62                 <artifactId>hub-maven-plugin</artifactId>
63                 <version>1.4.0</version>
64                 <inherited>false</inherited>
65                 <configuration>
66                     <hubProjectName>${project.name}</hubProjectName>
67                     <outputDirectory>${project.basedir}</outputDirectory>
68                 </configuration>
69                 <executions>
70                     <execution>
71                         <id>create-bdio-file</id>
72                         <phase>package</phase>
73                         <goals>
74                             <goal>createHubOutput</goal>
75                         </goals>
76                     </execution>
77                 </executions>
78             </plugin>
79             <!-- license plugin -->
80             <plugin>
81                 <groupId>org.codehaus.mojo</groupId>
82                 <artifactId>license-maven-plugin</artifactId>
83                 <version>1.10</version>
84                 <configuration>
85                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
86                     <processStartTag>============LICENSE_START=======================================================</processStartTag>
87                     <processEndTag>============LICENSE_END=========================================================</processEndTag>
88                     <sectionDelimiter>================================================================================</sectionDelimiter>
89                     <licenseName>apache_v2</licenseName>
90                     <inceptionYear>2017</inceptionYear>
91                     <organizationName>OpenECOMP</organizationName>
92                     <projectName>openECOMP : APP-C</projectName>
93                     <canUpdateCopyright>true</canUpdateCopyright>
94                     <canUpdateDescription>true</canUpdateDescription>
95                     <canUpdateLicense>true</canUpdateLicense>
96                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
97                 </configuration>
98                 <executions>
99                     <execution>
100                         <id>first</id>
101                         <goals>
102                             <goal>update-file-header</goal>
103                         </goals>
104                         <phase>process-sources</phase>
105                     </execution>
106                 </executions>
107             </plugin>
108         </plugins>
109     </build>
110     <modules>
111         <module>platform-logic</module>
112         <module>installation</module>
113     </modules>
114     <organization>
115         <name>OpenECOMP</name>
116     </organization>
117     <version>1.1.0-SNAPSHOT</version>
118 </project>