aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordglFromAtt <dgl@research.att.com>2018-03-03 23:53:39 -0500
committerdglFromAtt <dgl@research.att.com>2018-03-03 23:54:06 -0500
commitd174e93595bb38138a0b4ef26af3b57e937340f1 (patch)
treeb149d100521b21827d9abca629bce463f9197485
parent41317d52ae9991ff49ca21c72aceb6037dffc9ad (diff)
Added site for Dist Mgt
Change-Id: Ib1795ed41eea090489f9b7950838cab1c566abe5 Signed-off-by: dglFromAtt <dgl@research.att.com> Issue-ID: DMAAP-324
-rw-r--r--pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 6cf715f..d5fc86b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,6 +104,20 @@
</executions>
</plugin>
+ <!-- for Distribution Managment -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.6</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav-jackrabbit</artifactId>
+ <version>2.10</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
</plugins>
<pluginManagement>
<plugins>
@@ -281,6 +295,12 @@
</plugin>
</plugins>
</reporting>
+ <distributionManagement>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
+ </distributionManagement>
<properties>
<jersey.version>2.26</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -297,6 +317,9 @@
<!-- Note: This list should match jacoco-maven-plugin's exclusion list
below -->
<sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
+
+ <!-- for Distribution Management -->
+ <sitePath>/content/sites/site/org/onap/dmaap/buscontroller/${artifact.version}</sitePath>
</properties>
<description>Data Movement as a Platform (DMaaP) Bus Controller provides a REST API for other DCAE infrastructure components to provision DMaaP resources. A DMaaP resource is a Data Router Feed or a Message Router Topic, and their associated publishers and subscribers.</description>
</project>