diff options
author | Varun Gudisena <vg411h@att.com> | 2017-09-21 23:37:18 -0500 |
---|---|---|
committer | Varun Gudisena <vg411h@att.com> | 2017-09-21 23:37:23 -0500 |
commit | d6608840952c71f932fdf7fe362aaf297c197e7f (patch) | |
tree | c2bbf61e8f93cf7ab2aee7144d3059eb65fe288b | |
parent | 34c8ac590e5dcd5b369cdc0a1644df69f6295fcc (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>
-rw-r--r-- | pom.xml | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -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 --> |