diff options
author | Christopher Lott (cl778h) <clott@research.att.com> | 2017-08-16 06:14:47 -0400 |
---|---|---|
committer | Christopher Lott (cl778h) <clott@research.att.com> | 2017-08-16 06:30:35 -0400 |
commit | e65699b62a1761dbbc9f02979799d4239d828e95 (patch) | |
tree | 86b5628c421024109fc85681823982f0fb35c810 | |
parent | 959830943c96734b46de8f0b8477394c83054aeb (diff) |
Second attempt to fix site deploy error
Correct entries for deploy target host and path
in ecomp-portal-BE-os/pom.xml to repair deploy error
Issue: PORTAL-54
Change-Id: Id5c34e7c89eaff4467092b2d322fd0e07cb43950
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
-rw-r--r-- | ecomp-portal-BE-os/pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ecomp-portal-BE-os/pom.xml b/ecomp-portal-BE-os/pom.xml index 837e6dff..d00d47a0 100644 --- a/ecomp-portal-BE-os/pom.xml +++ b/ecomp-portal-BE-os/pom.xml @@ -4,7 +4,6 @@ <groupId>org.openecomp.portal</groupId> <artifactId>ecompportal-be-os</artifactId> <packaging>war</packaging> - <!-- Jenkins is not used to build the o/s version --> <version>1.1</version> <properties> @@ -22,6 +21,7 @@ <nexusproxy>https://nexus.onap.org</nexusproxy> <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> <releaseNexusPath>content/repositories/releases/</releaseNexusPath> + <sitePath>/content/sites/site/org/onap/portal/${project.version}</sitePath> </properties> <reporting> @@ -47,7 +47,7 @@ <distributionManagement> <site> <id>ecomp-site</id> - <url>dav:${nexusproxy}/content/sites/site/org/onap/portal/${project.version}</url> + <url>dav:${nexusproxy}${sitePath}</url> </site> </distributionManagement> <repositories> |