Created
February 1, 2021 18:11
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ..... | |
| <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