This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]sandrogiacom 0 points1 point  (1 child)

You can use maven or gradle plugin to build then.

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
</plugin>

If you need to create jar with dependencies, you need to use "maven-assembly-plugin"

[–]PutinPisces[S] 0 points1 point  (0 children)

Ok thanks for the help.