diff options
author | 2017-08-16 17:34:08 -0400 | |
---|---|---|
committer | 2017-08-17 10:53:07 -0400 | |
commit | a821bc9096b8ef69134af485f268b755041e8230 (patch) | |
tree | 7708a1d97886d445c62f4a40610f11ad8ad3978a /pom.xml | |
parent | d149213f5f79eb153c2ec013fb8e64e51baeb664 (diff) |
Update all pom files in aaf/inno
Modify the pom files in the aaf/inno project.Adding
distributionMangament details into parent & sub projects of
aaf/inno
Issue-id:AAF-23
Change-Id: I5f99e648d6fa9ca0f3d9478dc92cca0428379704
Signed-off-by: sg481n <sg481n@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 89 |
1 files changed, 60 insertions, 29 deletions
@@ -46,10 +46,21 @@ <organizationUrl></organizationUrl> </developer> </developers> - + + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> + <sitePath>/content/sites/site/org/onap/aaf/inno/${project.version}</sitePath> </properties> <dependencies> @@ -90,7 +101,7 @@ <inherited>true</inherited> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - + <version>3.6.2</version> <configuration> <source>1.6</source> <target>1.6</target> @@ -99,6 +110,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> + <version>3.0.0-M1</version> <configuration> <failOnError>false</failOnError> </configuration> @@ -127,40 +139,59 @@ </executions> </plugin> - <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.7</version> - <extensions>true</extensions> - <configuration> - <serverId>ossrhdme</serverId> - <nexusUrl>https://oss.sonatype.org/</nexusUrl> - <autoReleaseAfterClose>true</autoReleaseAfterClose> - </configuration> - </plugin> - + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <nexusUrl>${nexusproxy}</nexusUrl> + <serverId>ecomp-staging</serverId> + </configuration> + </plugin> </plugins> </build> - <distributionManagement> - <snapshotRepository> - <id>ossrhdme</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> - <repository> - <id>ossrhdme</id> - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> - </repository> + <repository> + <id>ecomp-releases</id> + <name>AAF Release Repository</name> + <url>${nexusproxy}/${releaseNexusPath}</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>AAF Snapshot Repository</name> + <url>${nexusproxy}/${snapshotNexusPath}</url> + </snapshotRepository> </distributionManagement> +<pluginRepositories> + <pluginRepository> + <id>onap-plugin-snapshots</id> + <url>https://nexus.onap.org/content/repositories/snapshots/</url> + </pluginRepository> + </pluginRepositories> - <scm> - <connection>https://github.com/att/AAF.git</connection> - <developerConnection>${project.scm.connection}</developerConnection> - <url>http://github.com/att/AAF/tree/master</url> - </scm> - + <repositories> + <repository> + <id>central</id> + <name>Maven 2 repository 2</name> + <url>http://repo2.maven.org/maven2/</url> + </repository> + <repository> + <id>onap-jar-snapshots</id> + <url>https://nexus.onap.org/content/repositories/snapshots</url> + </repository> + <repository> + <id>spring-repo</id> + <name>Spring repo</name> + <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url> + </repository> + <repository> + <id>repository.jboss.org-public</id> + <name>JBoss.org Maven repository</name> + <url>https://repository.jboss.org/nexus/content/groups/public</url> + </repository> + </repositories> <modules> <module>env</module> <module>xgen</module> |