Skip to content

Instantly share code, notes, and snippets.

@vinimonteiro
Created February 1, 2021 18:11
Show Gist options
  • Select an option

  • Save vinimonteiro/caddd673b924ed8ebb219a26327ceb6a to your computer and use it in GitHub Desktop.

Select an option

Save vinimonteiro/caddd673b924ed8ebb219a26327ceb6a to your computer and use it in GitHub Desktop.
Maven jar plugin used to generate the full fat jar containing pom.xml
.....
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>packaged</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment