JAVA-25848 | renaming modules

This commit is contained in:
gaepi 2023-10-16 09:42:13 +02:00
parent 0eafba3ba1
commit 825ae48e86
66 changed files with 27 additions and 28 deletions

View File

@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>api-service</artifactId>
<artifactId>lightrun-api-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>api-service</name>
<name>lightrun-api-service</name>
<description>Aggregator Service for LightRun Article</description>
<parent>

View File

@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>tasks-service</artifactId>
<artifactId>lightrun-tasks-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>tasks-service</name>
<name>lightrun-tasks-service</name>
<description>Tasks Service for LightRun Article</description>
<parent>

View File

@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>users-service</artifactId>
<artifactId>lightrun-users-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>users-service</name>
<name>lightrun-users-service</name>
<description>Users Service for LightRun Article</description>
<parent>

View File

@ -4,8 +4,8 @@
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>com.baeldung.jacoco-coverage-aggregation</groupId>
<artifactId>aggregate-report</artifactId>
<name>aggregate-report</name>
<artifactId>jacoco-coverage-aggregate-report</artifactId>
<name>jacoco-coverage-aggregate-report</name>
<packaging>pom</packaging>
<parent>

View File

@ -4,8 +4,8 @@
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>com.baeldung.jacoco-coverage-aggregation</groupId>
<artifactId>controllers</artifactId>
<name>controllers</name>
<artifactId>jacoco-coverage-controllers-example</artifactId>
<name>jacoco-coverage-controllers-example</name>
<packaging>jar</packaging>
<parent>

View File

@ -4,8 +4,8 @@
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>com.baeldung.jacoco-coverage-aggregation</groupId>
<artifactId>services</artifactId>
<name>services</name>
<artifactId>jacoco-coverage-services-example</artifactId>
<name>jacoco-coverage-services-example</name>
<packaging>jar</packaging>
<parent>

View File

@ -17,9 +17,9 @@
</parent>
<modules>
<module>services</module>
<module>controllers</module>
<module>aggregate-report</module>
<module>jacoco-coverage-services-example</module>
<module>jacoco-coverage-controllers-example</module>
<module>jacoco-coverage-aggregate-report</module>
</modules>
<build>

View File

@ -3,12 +3,12 @@
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">
<modelVersion>4.0.0</modelVersion>
<artifactId>module1</artifactId>
<artifactId>parent-pom-module1</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung.maven-parent-pom-resolution</groupId>
<artifactId>aggregator</artifactId>
<artifactId>maven-parent-pom-aggregator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<!-- The parent pom is resolved to project a's pom.xml -->
</parent>

View File

@ -3,12 +3,12 @@
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">
<modelVersion>4.0.0</modelVersion>
<artifactId>module3</artifactId>
<artifactId>parent-pom-module3</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung.maven-parent-pom-resolution</groupId>
<artifactId>aggregator</artifactId>
<artifactId>maven-parent-pom-aggregator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<!-- removing relativePath won't work even if project-a is the aggregator project -->
<!-- it only works in IntelliJ IDEA when project-a is registered as a Maven Project -->

View File

@ -3,19 +3,19 @@
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">
<modelVersion>4.0.0</modelVersion>
<artifactId>module2</artifactId>
<artifactId>parent-pom-module2</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung.maven-parent-pom-resolution</groupId>
<artifactId>module1</artifactId>
<artifactId>parent-pom-module1</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../module1/pom.xml</relativePath>
<relativePath>../parent-pom-module1/pom.xml</relativePath>
<!-- The parent pom is resolved to project a's pom.xml -->
</parent>
<modules>
<module>module3</module>
<module>parent-pom-module3</module>
</modules>
</project>

View File

@ -4,19 +4,18 @@
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>com.baeldung.maven-parent-pom-resolution</groupId>
<artifactId>aggregator</artifactId>
<artifactId>maven-parent-pom-aggregator</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>maven-parent-pom-resolution</artifactId>
<version>1.0.0-SNAPSHOT</version>
<!-- The parent pom is resolved to ../pom.xml -->
</parent>
<modules>
<module>module1</module>
<module>module2</module>
<module>parent-pom-module1</module>
<module>parent-pom-module2</module>
</modules>
</project>

View File

@ -9,7 +9,7 @@
<packaging>pom</packaging>
<modules>
<module>aggregator</module>
<module>maven-parent-pom-aggregator</module>
<module>disable-plugin-examples</module>
</modules>