Skip to content

Commit

Permalink
fix(build): disable maven shade plugin
Browse files Browse the repository at this point in the history
this configures compiled jar to be not-a-fat-jar

Signed-off-by: jonathan zollinger <[email protected]>
  • Loading branch information
Jonathan-Zollinger committed Jun 19, 2024
1 parent 3d54078 commit caf37ac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>io.micronaut.maven</groupId>
<artifactId>micronaut-maven-plugin</artifactId>
Expand Down

0 comments on commit caf37ac

Please sign in to comment.