diff options
author | Carsten Lund <lund@research.att.com> | 2017-02-24 01:14:09 +0000 |
---|---|---|
committer | Carsten Lund <lund@research.att.com> | 2017-02-24 01:14:09 +0000 |
commit | 3ffc2b325ee3a1112afaa86d529ad6f439b4cde7 (patch) | |
tree | dc890e769233474e0a384aa203f5fe88ec693b5f /dcae-demo-controller | |
parent | 7abef9cddd039d247e8201ecac45823ef17e1eb7 (diff) |
Update to fix hostname issue of demo POSTGRES VM
Change-Id: I8396b749d1a0afc532701d7f54d522aa0a33940f
Signed-off-by: Carsten Lund <lund@research.att.com>
Diffstat (limited to 'dcae-demo-controller')
-rw-r--r-- | dcae-demo-controller/pom.xml | 50 |
1 files changed, 15 insertions, 35 deletions
diff --git a/dcae-demo-controller/pom.xml b/dcae-demo-controller/pom.xml index ef29696..c133166 100644 --- a/dcae-demo-controller/pom.xml +++ b/dcae-demo-controller/pom.xml @@ -12,45 +12,25 @@ <maven.compiler.source>1.7</maven.compiler.source> <openecomp.nexus.releases>https://nexus.openecomp.org/content/repositories/releases/</openecomp.nexus.releases> <openecomp.nexus.snapshots>https://nexus.openecomp.org/content/repositories/snapshots/</openecomp.nexus.snapshots> + <openecomp.nexus.proxy>https://nexus.openecomp.org</openecomp.nexus.proxy> + <openecomp.nexus.staging.serverId>https://nexus.openecomp.org/content/repositories/snapshots/</openecomp.nexus.staging.serverId> + <openecomp.nexus.staging.profileId>https://nexus.openecomp.org/content/repositories/snapshots/</openecomp.nexus.staging.profileId> </properties> - <pluginRepositories> - <!-- Black Duck plugin dependencies --> - <pluginRepository> - <id>JCenter</id> - <name>JCenter Repository</name> - <url>http://jcenter.bintray.com</url> - </pluginRepository> - - <pluginRepository> - <id>Restlet</id> - <name>Restlet Repository</name> - <url>http://maven.restlet.com</url> - </pluginRepository> - </pluginRepositories> <build> <plugins> - <!-- blackduck maven plugin --> - <plugin> - <groupId>com.blackducksoftware.integration</groupId> - <artifactId>hub-maven-plugin</artifactId> - <version>1.4.0</version> - <inherited>false</inherited> - <configuration> - <hubProjectName>${project.name}</hubProjectName> - <outputDirectory>${project.basedir}</outputDirectory> - </configuration> - <executions> - <execution> - <id>create-bdio-file</id> - <phase>package</phase> - <goals> - <goal>createHubOutput</goal> - </goals> - </execution> - </executions> - </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <serverId>${openecomp.nexus.staging.profileId}</serverId> + <nexusUrl>${openecomp.nexus.proxy}</nexusUrl> + <stagingProfileId>${openecomp.nexus.staging.profileId}</stagingProfileId> + </configuration> + </plugin> <!-- site maven plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -236,4 +216,4 @@ <type>jar</type> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> |