Skip to content

Commit 314b094

Browse files
committed
Separate jar depending on fatjar status, enabling monolith to depends on components
1 parent 43283e3 commit 314b094

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

monolith/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
<plugin>
3030
<groupId>org.springframework.boot</groupId>
3131
<artifactId>spring-boot-maven-plugin</artifactId>
32+
<configuration>
33+
<classifier>exec</classifier>
34+
</configuration>
3235
</plugin>
3336
</plugins>
3437
</build>

player/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
<plugin>
6363
<groupId>org.springframework.boot</groupId>
6464
<artifactId>spring-boot-maven-plugin</artifactId>
65+
<configuration>
66+
<classifier>exec</classifier>
67+
</configuration>
6568
</plugin>
6669
</plugins>
6770
</build>

server/pom.xml

+3
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@
123123
<plugin>
124124
<groupId>org.springframework.boot</groupId>
125125
<artifactId>spring-boot-maven-plugin</artifactId>
126+
<configuration>
127+
<classifier>exec</classifier>
128+
</configuration>
126129
</plugin>
127130
</plugins>
128131
</build>

0 commit comments

Comments
 (0)