diff options
author | MichaelArrastia <MArrasti@amdocs.com> | 2018-03-23 10:28:15 +0000 |
---|---|---|
committer | MichaelArrastia <MArrasti@amdocs.com> | 2018-03-23 10:28:15 +0000 |
commit | f20d0f04997dd07a94cab89dabec36b76f970e37 (patch) | |
tree | cd66b50f7b7254701d943ac3be3579e0354610a3 /champ-lib | |
parent | 985b15821e37a82d90ca8939058f0a197558c3a1 (diff) |
Add maven deploy and nexus staging plugins
Fix merge job which is failing with authorisation error.
Issue-ID: AAI-927
Change-Id: Ibbf969de8d4d9d8238f8385a0c3d074887ef56dc
Signed-off-by: MichaelArrastia <MArrasti@amdocs.com>
Diffstat (limited to 'champ-lib')
-rw-r--r-- | champ-lib/pom.xml | 56 |
1 files changed, 39 insertions, 17 deletions
diff --git a/champ-lib/pom.xml b/champ-lib/pom.xml index e6dd2f3..18070dd 100644 --- a/champ-lib/pom.xml +++ b/champ-lib/pom.xml @@ -55,21 +55,21 @@ limitations under the License. <dependencyManagement> <dependencies> - <dependency> - <groupId>org.onap.aai.event-client</groupId> - <artifactId>event-client-api</artifactId> - <version>${event.client.version}</version> - </dependency> - <dependency> - <groupId>org.onap.aai.event-client</groupId> - <artifactId>event-client-dmaap</artifactId> - <version>${event.client.version}</version> - </dependency> - <dependency> - <groupId>org.onap.aai.event-client</groupId> - <artifactId>event-client-kafka</artifactId> - <version>${event.client.version}</version> - </dependency> + <dependency> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-api</artifactId> + <version>${event.client.version}</version> + </dependency> + <dependency> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-dmaap</artifactId> + <version>${event.client.version}</version> + </dependency> + <dependency> + <groupId>org.onap.aai.event-client</groupId> + <artifactId>event-client-kafka</artifactId> + <version>${event.client.version}</version> + </dependency> </dependencies> </dependencyManagement> @@ -271,7 +271,29 @@ limitations under the License. </systemPropertyVariables> </configuration> </plugin> - <!-- + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <executions> + <execution> + <id>default-deploy</id> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <nexusUrl>${onap.nexus.url}</nexusUrl> + <stagingProfileId>176c31dfe190a</stagingProfileId> + <serverId>ecomp-staging</serverId> + </configuration> + </plugin> + <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> @@ -302,7 +324,7 @@ limitations under the License. </execution> </executions> </plugin> - --> + --> </plugins> </build> </project> |