maven打jar包到本地仓库

(1)打包命令

mvn install:install-file -Dfile=C:\oraclexe\app\oracle\product\11.2.0\server\jdbc\lib\ojdbc6.jar -DgroupId=www.oracle.com -DartifactId=xedriver -Dversion=0.6.0 -Dpackaging=jar

(2)pom文件对应写法

<dependency>
	<groupId>www.oracle.com</groupId>
	<artifactId>xedriver</artifactId>
	<version>0.6.0</version>
</dependency>

  

猜你喜欢

转载自www.cnblogs.com/mituxiaogaoyang/p/9209310.html