summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2018-02-28 19:57:54 -0500
committerVenkata Harish K Kajur <vk250x@att.com>2018-03-01 09:44:59 -0500
commitd94784150cc7c5f9ab588b063fb0178d5a3aaf64 (patch)
tree9cb36e7e0bb245d66c8a3488f583336b8ee5f91d /pom.xml
parent4f13d6cc64eed0ef75a31ec5f490853267447ab1 (diff)
Update activemq logback freemarker for nexus iq
Also update the pom to add proper distribution management Issue-ID: AAI-792 Issue-ID: AAI-793 Change-Id: Ia82e9602b9af0e2b1fea3fa1875bfc9c6af0eb83 Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml42
1 files changed, 13 insertions, 29 deletions
diff --git a/pom.xml b/pom.xml
index 05752ba..df5e679 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,6 +13,9 @@
</modules>
<properties>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <site.path>/content/sites/site/org/onap/aai/resources/${project.artifactId}/${project.version}</site.path>
+ <release.path>/content/repositories/releases/</release.path>
+ <snapshot.path>/content/repositories/snapshots/</snapshot.path>
</properties>
<build>
<pluginManagement>
@@ -46,7 +49,6 @@
</plugins>
</pluginManagement>
<plugins>
-
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
@@ -84,7 +86,6 @@
</dependencies>
</plugin>
</plugins>
-
</build>
<reporting>
<plugins>
@@ -117,37 +118,20 @@
<url>http://www.evosuite.org/m2</url>
</pluginRepository>
</pluginRepositories>
- <repositories>
- <repository>
- <id>AJSC</id>
- <name>AJSC repository</name>
- <url>https://mvnrepository.com/artifact/com.att.ajsc</url>
- </repository>
- <repository>
- <id>restlet</id>
- <name>maven reslet</name>
- <url>https://maven.restlet.com/</url>
- </repository>
-
- <repository>
- <id>central</id>
- <name>Maven 2 repository 2</name>
- <url>http://repo2.maven.org/maven2/</url>
- </repository>
+ <distributionManagement>
<repository>
<id>ecomp-releases</id>
<name>ECOMP Release Repository</name>
- <url>${nexusproxy}/content/repositories/releases/</url>
+ <url>${nexusproxy}${release.path}</url>
</repository>
- <repository>
- <id>ecomp-staging</id>
- <name>ECOMP Staging Repository</name>
- <url>${nexusproxy}/content/repositories/staging/</url>
- </repository>
- <repository>
+ <snapshotRepository>
<id>ecomp-snapshots</id>
<name>ECOMP Snapshot Repository</name>
- <url>${nexusproxy}/content/repositories/snapshots/</url>
- </repository>
- </repositories>
+ <url>${nexusproxy}${snapshot.path}</url>
+ </snapshotRepository>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${site.path}</url>
+ </site>
+ </distributionManagement>
</project>