maven打包引入本地包

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/daichangxia/article/details/85988601
<dependency>
			<artifactId>com.xx</artifactId>
			<groupId>xx</groupId>
			<version>0.0.4.3</version>
			<scope>system</scope>
			<systemPath>${basedir}/lib/xx.jar</systemPath>
		</dependency>

猜你喜欢

转载自blog.csdn.net/daichangxia/article/details/85988601