How to export java project to jar

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

0

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

请先登录再写评论。