Roll to first Dublin snapshot
[ccsdk/parent.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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5
6     <modelVersion>4.0.0</modelVersion>
7     <packaging>pom</packaging>
8     <groupId>org.onap.ccsdk.parent</groupId>
9     <artifactId>parent</artifactId>
10     <version>1.2.0-SNAPSHOT</version>
11     <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
12
13     <properties>
14         <onap.nexus.host>nexus.onap.org</onap.nexus.host>
15         <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
16         <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
17     </properties>
18
19     <distributionManagement>
20         <repository>
21             <id>ecomp-releases</id>
22             <url>https://nexus.onap.org/content/repositories/releases</url>
23         </repository>
24         <snapshotRepository>
25             <id>ecomp-snapshots</id>
26             <url>https://nexus.onap.org/content/repositories/snapshots</url>
27         </snapshotRepository>
28     </distributionManagement>
29
30     <build>
31         <plugins>
32             <plugin>
33                 <groupId>org.codehaus.mojo</groupId>
34                 <artifactId>versions-maven-plugin</artifactId>
35                 <version>2.5</version>
36                 <configuration>
37                     <processAllModules>true</processAllModules>
38                 </configuration>
39             </plugin>
40             <plugin>
41                 <groupId>org.sonatype.plugins</groupId>
42                 <artifactId>nexus-staging-maven-plugin</artifactId>
43                 <version>1.6.7</version>
44                 <extensions>true</extensions>
45                 <configuration>
46                     <nexusUrl>https://${onap.nexus.host}</nexusUrl>
47                     <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
48                     <serverId>${onap.nexus.staging.server-id}</serverId>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53     <modules>
54         <module>odlparent</module>
55         <module>springboot</module>
56     </modules>
57
58 </project>