JAVA-16264: review module names (#13136)

This commit is contained in:
freelansam
2022-12-08 18:58:09 +05:30
committed by GitHub
parent 54f0778e16
commit 74bad6447e
117 changed files with 59 additions and 59 deletions

View File

@@ -4,7 +4,7 @@
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.daomodule</groupId>
<artifactId>daomodule</artifactId>
<artifactId>maven-daomodule</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

View File

@@ -4,7 +4,7 @@
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.entitymodule</groupId>
<artifactId>entitymodule</artifactId>
<artifactId>maven-entitymodule</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

View File

@@ -4,7 +4,7 @@
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.mainappmodule</groupId>
<artifactId>mainappmodule</artifactId>
<artifactId>maven-mainappmodule</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
@@ -17,17 +17,17 @@
<dependencies>
<dependency>
<groupId>com.baeldung.entitymodule</groupId>
<artifactId>entitymodule</artifactId>
<artifactId>maven-entitymodule</artifactId>
<version>${entitymodule.version}</version>
</dependency>
<dependency>
<groupId>com.baeldung.daomodule</groupId>
<artifactId>daomodule</artifactId>
<artifactId>maven-daomodule</artifactId>
<version>${daomodule.version}</version>
</dependency>
<dependency>
<groupId>com.baeldung.userdaomodule</groupId>
<artifactId>userdaomodule</artifactId>
<artifactId>maven-userdaomodule</artifactId>
<version>${userdaomodule.version}</version>
</dependency>
</dependencies>

View File

@@ -4,7 +4,7 @@
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.userdaomodule</groupId>
<artifactId>userdaomodule</artifactId>
<artifactId>maven-userdaomodule</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

View File

@@ -17,10 +17,10 @@
</parent>
<modules>
<module>entitymodule</module>
<module>daomodule</module>
<module>userdaomodule</module>
<module>mainappmodule</module>
<module>maven-entitymodule</module>
<module>maven-daomodule</module>
<module>maven-userdaomodule</module>
<module>maven-mainappmodule</module>
</modules>
<build>

View File

@@ -13,8 +13,8 @@
</parent>
<modules>
<module>project-a</module>
<module>project-b</module>
<module>version-collision-project-a</module>
<module>version-collision-project-b</module>
<module>project-collision</module>
</modules>

View File

@@ -14,7 +14,7 @@
<dependencies>
<dependency>
<groupId>com.baeldung</groupId>
<artifactId>project-a</artifactId>
<artifactId>version-collision-project-a</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- uncomment to exclude guava transitive artifact from module -->
<!-- <exclusions> -->
@@ -26,7 +26,7 @@
</dependency>
<dependency>
<groupId>com.baeldung</groupId>
<artifactId>project-b</artifactId>
<artifactId>version-collision-project-b</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>

View File

@@ -3,7 +3,7 @@
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>project-a</artifactId>
<artifactId>version-collision-project-a</artifactId>
<parent>
<artifactId>version-collision</artifactId>

View File

@@ -3,7 +3,7 @@
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>project-b</artifactId>
<artifactId>version-collision-project-b</artifactId>
<parent>
<artifactId>version-collision</artifactId>

View File

@@ -13,8 +13,8 @@
</parent>
<modules>
<module>child-a</module>
<module>child-b</module>
<module>version-overriding-child-a</module>
<module>version-overriding-child-b</module>
</modules>
<build>

View File

@@ -3,7 +3,7 @@
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>child-a</artifactId>
<artifactId>version-overriding-child-a</artifactId>
<packaging>pom</packaging>
<parent>

View File

@@ -3,7 +3,7 @@
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>child-b</artifactId>
<artifactId>version-overriding-child-b</artifactId>
<parent>
<artifactId>version-overriding-plugins</artifactId>