Skip to content

Commit

Permalink
fix(build): dont package core as fat jar
Browse files Browse the repository at this point in the history
fixes gh issue #123

Signed-off-by: jonathan zollinger <jonathan.zollinger@outlook.com>
  • Loading branch information
Jonathan-Zollinger committed Jun 15, 2024
1 parent 158e89c commit 7841c53
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,14 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 7841c53

Please sign in to comment.