diff options
author | Rob Daugherty <rd472p@att.com> | 2017-08-01 11:56:58 -0400 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2017-08-01 12:01:37 -0400 |
commit | 8047b7cc808079539dc18de940cf22b66023a9f7 (patch) | |
tree | 459eceb9853e393ea6fd9fff88bceb282096f09e /bpmn/MSOCoreBPMN | |
parent | 2c5310ad100fab7a368bb7572b64a0231ff843d2 (diff) |
Failed to deploy so artifacts in nexus
More problems encountered since mso repos were renamed.
We now have found that this declaration in the top-level so pom
causes the deploy to fail with a 403 Forbidden error:
<groupId>org.openecomp</groupId>
<artifactId>so</artifactId>
We are changing this to:
<groupId>org.openecomp.so</groupId>
<artifactId>framework</artifactId>
Issue: SO-21
Change-Id: I4e21d689c73c5071bde725127bb81482ce3d91f9
Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'bpmn/MSOCoreBPMN')
-rw-r--r-- | bpmn/MSOCoreBPMN/pom.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bpmn/MSOCoreBPMN/pom.xml b/bpmn/MSOCoreBPMN/pom.xml index 29ea1b6e01..9de2793d44 100644 --- a/bpmn/MSOCoreBPMN/pom.xml +++ b/bpmn/MSOCoreBPMN/pom.xml @@ -2,12 +2,12 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> - <groupId>org.openecomp.so</groupId> + <groupId>org.openecomp.so.framework</groupId> <artifactId>bpmn</artifactId> <version>1.1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> - <groupId>org.openecomp.so</groupId> + <groupId>org.openecomp.so.framework</groupId> <artifactId>MSOCoreBPMN</artifactId> <packaging>jar</packaging> @@ -134,7 +134,7 @@ <artifactId>Saxon-HE</artifactId> </dependency> <dependency> - <groupId>org.openecomp.so</groupId> + <groupId>org.openecomp.so.framework</groupId> <artifactId>common</artifactId> <version>${project.version}</version> </dependency> @@ -169,7 +169,7 @@ <version>1.6</version> </dependency> <dependency> - <groupId>org.openecomp.so</groupId> + <groupId>org.openecomp.so.framework</groupId> <artifactId>status-control</artifactId> <version>${project.version}</version> </dependency> |