Skip to content

Commit 095ed37

Browse files
committed
Configure multi-module Maven project
1 parent 02d97fa commit 095ed37

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

blocking-service/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@
88
<version>2.6.3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
11+
1112
<groupId>com.example</groupId>
1213
<artifactId>blocking-service</artifactId>
1314
<version>0.0.1-SNAPSHOT</version>
1415
<name>blocking-service</name>
1516
<description>blocking-service</description>
17+
1618
<properties>
1719
<java.version>17</java.version>
1820
</properties>
21+
1922
<dependencies>
2023
<dependency>
2124
<groupId>org.springframework.boot</groupId>

pom.xml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.example</groupId>
8+
<artifactId>reactive-programming-java-examples</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<packaging>pom</packaging>
11+
12+
<modules>
13+
<module>reactive-programming</module>
14+
<module>blocking-service</module>
15+
<module>reactive-service</module>
16+
</modules>
17+
18+
</project>

reactive-service/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@
88
<version>2.6.3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
11+
1112
<groupId>com.example</groupId>
1213
<artifactId>reactive-service</artifactId>
1314
<version>0.0.1-SNAPSHOT</version>
1415
<name>reactive-service</name>
1516
<description>reactive-service</description>
17+
1618
<properties>
1719
<java.version>17</java.version>
1820
</properties>
21+
1922
<dependencies>
2023
<dependency>
2124
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)