Skip to content

Instantly share code, notes, and snippets.

@zorteran
Created May 12, 2020 05:05
Show Gist options
  • Save zorteran/ec27ae88dbcf37c4bb867d01e3e0f353 to your computer and use it in GitHub Desktop.
Save zorteran/ec27ae88dbcf37c4bb867d01e3e0f353 to your computer and use it in GitHub Desktop.
part of pom.xml - package fat jar
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment