Dan Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | e3948b0 | 2019-03-04 11:49:26 -0500 | [diff] [blame^] | 2 | <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 Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 5 | |
Dan Timoney | e8886c4 | 2017-10-24 20:08:51 -0400 | [diff] [blame] | 6 | |
Timoney, Dan (dt5972) | e3948b0 | 2019-03-04 11:49:26 -0500 | [diff] [blame^] | 7 | <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 Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 13 | |
Timoney, Dan (dt5972) | e3948b0 | 2019-03-04 11:49:26 -0500 | [diff] [blame^] | 14 | <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) | ab85bb6 | 2018-03-05 15:28:15 -0500 | [diff] [blame] | 19 | |
Timoney, Dan (dt5972) | e3948b0 | 2019-03-04 11:49:26 -0500 | [diff] [blame^] | 20 | <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 Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 30 | |
Timoney, Dan (dt5972) | e3948b0 | 2019-03-04 11:49:26 -0500 | [diff] [blame^] | 31 | <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 Timoney | e8886c4 | 2017-10-24 20:08:51 -0400 | [diff] [blame] | 73 | |
Dan Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 74 | </project> |