Answers for "maven to jar"

2

maven use local dependency jar

<dependency>
    <groupId>com.sample</groupId>
    <artifactId>sample</artifactId>
    <version>1.0</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/resources/Name_Your_JAR.jar</systemPath>
</dependency>
Posted by: Guest on May-26-2020
0

create jar with maven commandline

mvn clean compile assembly:single
mvn install
Posted by: Guest on February-01-2022

Browse Popular Code Answers by Language