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.dddcontexts.infrastructure</groupId>
<artifactId>infrastructure</artifactId>
<artifactId>ddd-contexts-infrastructure</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
@@ -18,17 +18,17 @@
<dependencies>
<dependency>
<groupId>com.baeldung.dddcontexts.shippingcontext</groupId>
<artifactId>shippingcontext</artifactId>
<artifactId>ddd-contexts-shippingcontext</artifactId>
<version>${appmodules.version}</version>
</dependency>
<dependency>
<groupId>com.baeldung.dddcontexts.ordercontext</groupId>
<artifactId>ordercontext</artifactId>
<artifactId>ddd-contexts-ordercontext</artifactId>
<version>${appmodules.version}</version>
</dependency>
<dependency>
<groupId>com.baeldung.dddcontexts.sharedkernel</groupId>
<artifactId>sharedkernel</artifactId>
<artifactId>ddd-contexts-sharedkernel</artifactId>
<version>${appmodules.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.dddcontexts.mainapp</groupId>
<artifactId>mainapp</artifactId>
<artifactId>ddd-contexts-mainapp</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
@@ -18,7 +18,7 @@
<dependencies>
<dependency>
<groupId>com.baeldung.dddcontexts.infrastructure</groupId>
<artifactId>infrastructure</artifactId>
<artifactId>ddd-contexts-infrastructure</artifactId>
<version>${appmodules.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.dddcontexts.ordercontext</groupId>
<artifactId>ordercontext</artifactId>
<artifactId>ddd-contexts-ordercontext</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
@@ -17,7 +17,7 @@
<dependencies>
<dependency>
<groupId>com.baeldung.dddcontexts.sharedkernel</groupId>
<artifactId>sharedkernel</artifactId>
<artifactId>ddd-contexts-sharedkernel</artifactId>
<version>${appmodules.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.dddcontexts.sharedkernel</groupId>
<artifactId>sharedkernel</artifactId>
<artifactId>ddd-contexts-sharedkernel</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.dddcontexts.shippingcontext</groupId>
<artifactId>shippingcontext</artifactId>
<artifactId>ddd-contexts-shippingcontext</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
@@ -17,7 +17,7 @@
<dependencies>
<dependency>
<groupId>com.baeldung.dddcontexts.sharedkernel</groupId>
<artifactId>sharedkernel</artifactId>
<artifactId>ddd-contexts-sharedkernel</artifactId>
<version>${appmodules.version}</version>
</dependency>
</dependencies>

View File

@@ -16,11 +16,11 @@
</parent>
<modules>
<module>sharedkernel</module>
<module>infrastructure</module>
<module>shippingcontext</module>
<module>ordercontext</module>
<module>mainapp</module>
<module>ddd-contexts-sharedkernel</module>
<module>ddd-contexts-infrastructure</module>
<module>ddd-contexts-shippingcontext</module>
<module>ddd-contexts-ordercontext</module>
<module>ddd-contexts-mainapp</module>
</modules>
<dependencyManagement>