summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorVarun Gudisena <vg411h@att.com>2017-09-21 23:37:18 -0500
committerVarun Gudisena <vg411h@att.com>2017-09-21 23:37:23 -0500
commitd6608840952c71f932fdf7fe362aaf297c197e7f (patch)
treec2bbf61e8f93cf7ab2aee7144d3059eb65fe288b /pom.xml
parent34c8ac590e5dcd5b369cdc0a1644df69f6295fcc (diff)
Add maven site plugin
Added maven site plug for jenkins job issue-id: DMAAP-144 Change-Id: Ia54c2f73546740f8261fb60e9b6b9ef358be5383 Signed-off-by: Varun Gudisena <vg411h@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml23
1 files changed, 20 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 7508a40..f2df084 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,7 @@
<parent>
<groupId>org.onap.oparent</groupId>
<artifactId>oparent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.1.1</version>
</parent>
<groupId>org.onap.dmaap.messagerouter.messageservice</groupId>
@@ -55,9 +55,20 @@
</developer>
</developers>
-
<build>
<plugins>
+ <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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
@@ -444,10 +455,16 @@
<testEnv>DEV</testEnv>
<dmaapImg>1.0.2-SNAPSHOT</dmaapImg>
<camel.version>2.15.5</camel.version>
+ <sitePath>/content/sites/site/org/onap/dmaap/${project.artifactId}/${project.version}</sitePath>
</properties>
<!-- Distribution management -->
-
+ <distributionManagement>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
+ </distributionManagement>
<!-- End Distribution management -->