How to export java project to jar

How to make java maven project export to jar in IntelliJ?

0
3 comments

The output format is defined in

packaging
tag in pom.xml, and the “
jar
” means package this Java project into a jar file:
<packaging>jar</packaging>

If you run the goal

"package"
from "View | Tool Windows | Maven", Maven will package this Java project into a jar file.
0
Avatar
Permanently deleted user

Thanks a lot.

0

Please sign in to leave a comment.