Answers for "how to add extra jar file into maven folder"

3

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

how to set jar path maven

mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version>
Posted by: Guest on August-02-2020

Browse Popular Code Answers by Language