maven引用本地包

<dependency>
    <groupId>com.xxx</groupId>
    <artifactId>xxx</artifactId>
    <version>1.1</version>
    <scope>system</scope>
    <systemPath>${basedir}/lib/jdoc-1.1.jar</systemPath>
</dependency>

猜你喜欢

转载自tangzongyun.iteye.com/blog/2404283