diff options
-rw-r--r-- | pom.xml | 22 | ||||
-rw-r--r-- | workflow-designer-be/pom.xml | 2 | ||||
-rw-r--r-- | workflow-designer-init/pom.xml | 2 | ||||
-rw-r--r-- | workflow-designer-ui/pom.xml | 5 |
4 files changed, 18 insertions, 13 deletions
@@ -20,7 +20,13 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.onap.sdc.workflow_designer</groupId> + + <!-- + The groupId violates Maven naming conventions + (https://maven.apache.org/guides/mini/guide-naming-conventions.html) + because of a limitation of ONAP CI/CD infrastructure. + --> + <groupId>org.onap.sdc.sdc-workflow-designer</groupId> <artifactId>workflow-designer-parent</artifactId> <version>1.3.0-SNAPSHOT</version> <packaging>pom</packaging> @@ -89,7 +95,7 @@ <version>1.6.8</version> <extensions>true</extensions> <configuration> - <serverId>onap-staging</serverId> + <serverId>ecomp-staging</serverId> <nexusUrl>${nexus.proxy}</nexusUrl> <stagingProfileId>${staging.profile.id}</stagingProfileId> </configuration> @@ -99,34 +105,34 @@ <repositories> <repository> - <id>onap-releases</id> + <id>ecomp-releases</id> <name>Release Repository</name> <url>${nexus.proxy}/content/repositories/releases/</url> </repository> <repository> - <id>onap-snapshots</id> + <id>ecomp-snapshots</id> <name>Snapshots Repository</name> <url>${nexus.proxy}/content/repositories/snapshots/</url> </repository> <repository> - <id>onap-public</id> + <id>ecomp-public</id> <name>Public Repository</name> <url>${nexus.proxy}/content/repositories/public/</url> </repository> </repositories> <distributionManagement> <repository> - <id>onap-releases</id> + <id>ecomp-releases</id> <name>Release Repository</name> <url>${nexus.proxy}/content/repositories/releases/</url> </repository> <snapshotRepository> - <id>onap-snapshots</id> + <id>ecomp-snapshots</id> <name>Snapshot Repository</name> <url>${nexus.proxy}/content/repositories/snapshots/</url> </snapshotRepository> <site> - <id>onap-site</id> + <id>ecomp-site</id> <url>dav:${nexus.proxy}${sitePath}</url> </site> </distributionManagement> diff --git a/workflow-designer-be/pom.xml b/workflow-designer-be/pom.xml index ac77e5f7..10f1ad2f 100644 --- a/workflow-designer-be/pom.xml +++ b/workflow-designer-be/pom.xml @@ -8,7 +8,7 @@ <artifactId>workflow-designer-be</artifactId> <parent> - <groupId>org.onap.sdc.workflow_designer</groupId> + <groupId>org.onap.sdc.sdc-workflow-designer</groupId> <artifactId>workflow-designer-parent</artifactId> <version>1.3.0-SNAPSHOT</version> </parent> diff --git a/workflow-designer-init/pom.xml b/workflow-designer-init/pom.xml index 7f926e86..f38abf9f 100644 --- a/workflow-designer-init/pom.xml +++ b/workflow-designer-init/pom.xml @@ -8,7 +8,7 @@ <packaging>pom</packaging> <parent> - <groupId>org.onap.sdc.workflow_designer</groupId> + <groupId>org.onap.sdc.sdc-workflow-designer</groupId> <artifactId>workflow-designer-parent</artifactId> <version>1.3.0-SNAPSHOT</version> </parent> diff --git a/workflow-designer-ui/pom.xml b/workflow-designer-ui/pom.xml index a841a5aa..172f5890 100644 --- a/workflow-designer-ui/pom.xml +++ b/workflow-designer-ui/pom.xml @@ -20,12 +20,11 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <artifactId>workflow-designer-ui</artifactId> <packaging>war</packaging> <parent> - <groupId>org.onap.sdc.workflow_designer</groupId> + <groupId>org.onap.sdc.sdc-workflow-designer</groupId> <artifactId>workflow-designer-parent</artifactId> <version>1.3.0-SNAPSHOT</version> </parent> @@ -118,7 +117,7 @@ </includes> </resource> <resource> - <directory>src/main/frontend/external-resources/ping/</directory> + <directory>src/main/frontend/external-resources/ping/</directory> <filtering>true</filtering> <includes> <include>ping</include> |