blob: 59d2dd0a55ab6efae71886d09df0364cfe108d63 [file] [log] [blame]
talasila0ff0e9f2017-02-15 17:36:47 -05001<?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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.openecomp.portal</groupId>
5 <artifactId>portal-project</artifactId>
6 <packaging>pom</packaging>
7 <!-- NOTE This value will not be picked from the property tag below, pass it as -Drelease.version="" when doing mvn deploy -->
8 <version>1.0.0</version>
9 <name>Portal (parent)</name>
10 <url>https://wiki/display/EcompPortal</url>
11 <description>ECOMP Portal Open-Source</description>
12 <scm>
13 <connection>scm:git:https://todourl/</connection>
14 </scm>
15
16 <modules>
17 <module>ecomp-portal-FE</module>
18 <module>ecomp-portal-BE</module>
19 </modules>
talasilae1487b02017-03-08 16:34:14 -050020 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.sonatype.plugins</groupId>
24 <artifactId>nexus-staging-maven-plugin</artifactId>
25 <version>1.6.7</version>
26 <extensions>true</extensions>
27 <configuration>
28 <nexusUrl>https://nexus.openecomp.org/</nexusUrl>
29 <stagingProfileId>176c31dfe190a</stagingProfileId>
30 <serverId>ecomp-staging</serverId>
31 </configuration>
32 </plugin>
33 </plugins>
talasila0ff0e9f2017-02-15 17:36:47 -050034
talasilae1487b02017-03-08 16:34:14 -050035 </build>
36
37 <distributionManagement>
38 <!-- Publish jars to the Nexus Repository - public group -->
39 <!-- The id below must match your .m2/settings.xml/servers/server/id -->
40 <repository>
41 <id>ecomp-releases</id>
42 <name>OpenECOMP - Release Repository</name>
43 <url>https://nexus.openecomp.org/content/repositories/releases/</url>
44 </repository>
45 <snapshotRepository>
46 <id>ecomp-snapshots</id>
47 <name>OpenECOMP - Snapshot Repository</name>
48 <url>https://nexus.openecomp.org/content/repositories/snapshots/</url>
49 </snapshotRepository>
50 </distributionManagement>
talasila0ff0e9f2017-02-15 17:36:47 -050051</project>