首页 > 代码库 > mvn pom

mvn pom

使用本地指定目录下jar包

<dependency>
       <groupId>com.myself.abc</groupId>
       <artifactId>sample</artifactId>
       <version>1.0.0</version>
           <scope>system</scope>
           <systemPath>${project.basedir}/src/main/lib/sample-1.0.0.jar</systemPath>
</dependency>

 

mvn pom