From f70c04acf766bdd85a2871779e9a150ebfce04cc Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Tue, 21 Nov 2023 17:00:33 +0100 Subject: [PATCH] OZG-4561 OZG-4603 Adjust maven modules --- alfa-client/pom.xml | 9 +++++---- alfa-server/pom.xml | 18 +++++++++--------- alfa-service/pom.xml | 6 +++--- alfa-xdomea/pom.xml | 10 +++++----- pom.xml | 14 +++++++------- 5 files changed, 29 insertions(+), 28 deletions(-) diff --git a/alfa-client/pom.xml b/alfa-client/pom.xml index 46ee2d225a..ff5f7dbcd7 100644 --- a/alfa-client/pom.xml +++ b/alfa-client/pom.xml @@ -28,13 +28,14 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> - <groupId>de.itvsh.ozg</groupId> - <artifactId>goofy</artifactId> - <version>1.18.0-SNAPSHOT</version> + <groupId>de.ozgcloud.alfa</groupId> + <artifactId>alfa</artifactId> + <version>2.0.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> - <artifactId>goofy-client</artifactId> + <artifactId>alfa-client</artifactId> + <name>Alfa Client</name> <packaging>pom</packaging> <build> diff --git a/alfa-server/pom.xml b/alfa-server/pom.xml index 5cffe9e9b4..76af5fdd23 100644 --- a/alfa-server/pom.xml +++ b/alfa-server/pom.xml @@ -3,30 +3,30 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>de.itvsh.ozg</groupId> - <artifactId>goofy</artifactId> - <version>1.18.0-SNAPSHOT</version> + <groupId>de.ozgcloud.alfa</groupId> + <artifactId>alfa</artifactId> + <version>2.0.0-SNAPSHOT</version> </parent> - <artifactId>goofy-server</artifactId> - <name>Goofy Server</name> + <artifactId>alfa-server</artifactId> + <name>Alfa Server</name> <properties> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> - <spring-boot.build-image.imageName>docker.ozg-sh.de/goofy:build-latest</spring-boot.build-image.imageName> + <spring-boot.build-image.imageName>docker.ozg-sh.de/alfa:build-latest</spring-boot.build-image.imageName> </properties> <dependencies> <dependency> - <groupId>de.itvsh.ozg</groupId> + <groupId>de.ozgcloud.alfa</groupId> <artifactId>alfa-service</artifactId> <version>${project.version}</version> </dependency> <dependency> - <groupId>de.itvsh.ozg</groupId> + <groupId>de.ozgcloud.alfa</groupId> <artifactId>alfa-xdomea</artifactId> <version>${project.version}</version> </dependency> @@ -110,7 +110,7 @@ <resources> <resource> <directory> - ../${project.parent.artifactId}-client/dist/apps/goofy/ + ../${project.parent.artifactId}-client/dist/apps/alfa/ </directory> </resource> </resources> diff --git a/alfa-service/pom.xml b/alfa-service/pom.xml index 879bcf2e87..b11ce7176a 100644 --- a/alfa-service/pom.xml +++ b/alfa-service/pom.xml @@ -30,9 +30,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>de.itvsh.ozg</groupId> - <artifactId>goofy</artifactId> - <version>1.18.0-SNAPSHOT</version> + <groupId>de.ozgcloud.alfa</groupId> + <artifactId>alfa</artifactId> + <version>2.0.0-SNAPSHOT</version> </parent> <artifactId>alfa-service</artifactId> diff --git a/alfa-xdomea/pom.xml b/alfa-xdomea/pom.xml index 178da9f35b..f7daf6c8a8 100644 --- a/alfa-xdomea/pom.xml +++ b/alfa-xdomea/pom.xml @@ -30,9 +30,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>de.itvsh.ozg</groupId> - <artifactId>goofy</artifactId> - <version>1.18.0-SNAPSHOT</version> + <groupId>de.ozgcloud.alfa</groupId> + <artifactId>alfa</artifactId> + <version>2.0.0-SNAPSHOT</version> </parent> <artifactId>alfa-xdomea</artifactId> @@ -48,7 +48,7 @@ <dependencies> <dependency> - <groupId>de.itvsh.ozg</groupId> + <groupId>de.ozgcloud.alfa</groupId> <artifactId>alfa-service</artifactId> <version>${project.version}</version> </dependency> @@ -69,7 +69,7 @@ <artifactId>spring-oxm</artifactId> </dependency> <dependency> - <groupId>de.itvsh.ozg</groupId> + <groupId>de.ozgcloud.alfa</groupId> <artifactId>alfa-service</artifactId> <version>${project.version}</version> <type>test-jar</type> diff --git a/pom.xml b/pom.xml index 5cc7cba21b..b5d05e7e6a 100644 --- a/pom.xml +++ b/pom.xml @@ -34,15 +34,15 @@ <version>2.3.1</version> </parent> - <groupId>de.itvsh.ozg</groupId> - <artifactId>goofy</artifactId> - <version>1.18.0-SNAPSHOT</version> - <name>Goofy Parent</name> + <groupId>de.ozgcloud.alfa</groupId> + <artifactId>alfa</artifactId> + <version>2.0.0-SNAPSHOT</version> + <name>Alfa Parent</name> <packaging>pom</packaging> <modules> - <module>goofy-client</module> - <module>goofy-server</module> + <module>alfa-client</module> + <module>alfa-server</module> <module>alfa-xdomea</module> <module>alfa-service</module> </modules> @@ -75,7 +75,7 @@ <exclude>**/README</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> - <exclude>**/goofy-e2e/reports/videos/**</exclude> + <exclude>**/alfa-e2e/reports/videos/**</exclude> <exclude>**/.angular/cache/**</exclude> </excludes> </licenseSet> -- GitLab