blob: 05678e649091f27a186971c0722e6b89620e9633 [file] [log] [blame]
Dan Timoneydd89f652017-07-19 15:03:41 -04001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)e3948b02019-03-04 11:49:26 -05002<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Dan Timoneydd89f652017-07-19 15:03:41 -04005
Dan Timoneye8886c42017-10-24 20:08:51 -04006
Timoney, Dan (dt5972)e3948b02019-03-04 11:49:26 -05007 <modelVersion>4.0.0</modelVersion>
8 <packaging>pom</packaging>
9 <groupId>org.onap.ccsdk.parent</groupId>
10 <artifactId>parent</artifactId>
11 <version>1.2.1-SNAPSHOT</version>
12 <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
Dan Timoneydd89f652017-07-19 15:03:41 -040013
Timoney, Dan (dt5972)e3948b02019-03-04 11:49:26 -050014 <properties>
15 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
16 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
17 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
18 </properties>
Timoney, Dan (dt5972)ab85bb62018-03-05 15:28:15 -050019
Timoney, Dan (dt5972)e3948b02019-03-04 11:49:26 -050020 <distributionManagement>
21 <repository>
22 <id>ecomp-releases</id>
23 <url>https://nexus.onap.org/content/repositories/releases</url>
24 </repository>
25 <snapshotRepository>
26 <id>ecomp-snapshots</id>
27 <url>https://nexus.onap.org/content/repositories/snapshots</url>
28 </snapshotRepository>
29 </distributionManagement>
Dan Timoneydd89f652017-07-19 15:03:41 -040030
Timoney, Dan (dt5972)e3948b02019-03-04 11:49:26 -050031 <profiles>
32 <profile>
33 <id>nexus-staging</id>
34 <activation>
35 <property>
36 <name>!altDeploymentRepository</name>
37 </property>
38 </activation>
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.sonatype.plugins</groupId>
43 <artifactId>nexus-staging-maven-plugin</artifactId>
44 <version>1.6.7</version>
45 <extensions>true</extensions>
46 <configuration>
47 <nexusUrl>https://${onap.nexus.host}</nexusUrl>
48 <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
49 <serverId>${onap.nexus.staging.server-id}</serverId>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54 </profile>
55 </profiles>
56
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>versions-maven-plugin</artifactId>
62 <version>2.5</version>
63 <configuration>
64 <processAllModules>true</processAllModules>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69 <modules>
70 <module>odlparent</module>
71 <module>springboot</module>
72 </modules>
Dan Timoneye8886c42017-10-24 20:08:51 -040073
Dan Timoneydd89f652017-07-19 15:03:41 -040074</project>