Horje
using local jar in maven Code Example
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>
using local jar in maven
Create a new folder, let's say local-maven-repo at the root of your Maven project.

Just add a local repo inside your <project> of your pom.xml:


<repositories>
    <repository>
        <id>local-maven-repo</id>
        <url>file:///${project.basedir}/local-maven-repo</url>
    </repository>
</repositories>




Whatever

Related
drop enum postgres Code Example drop enum postgres Code Example
flutter set default font family for whole app Code Example flutter set default font family for whole app Code Example
mob psycho 100 Code Example mob psycho 100 Code Example
Laravel adding Foreign Key Constraints Code Example Laravel adding Foreign Key Constraints Code Example
solid Code Example solid Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6