通过mvn的install-file命令即可完成上述任务, 完整的命令格式如下:mvn install:install-file -Dfile=your-jar-file-path -DgroupId=com.your.group -DartifactId=your-artifactId -Dversion=x.x -Dpackaging=jar -DlocalRepositoryPath=your repository -Dfile 需要放入maven仓库jar包的位置 -DgroupId对应为pom文...
mvn install:install-file -DgroupId=<your_group_name> -DartifactId=<your_artifact_name> -Dversion=<snapshot> -Dfile=<path_to_your_jar_file> -Dpackaging=jar -DgeneratePom=true 例子: cmd --> mvn install:install-file -DgroupId=com.google.code -DartifactId=kaptcha -Dversion=2.3.2 ...
# -Dmaven.repo.local 指定仓库位置-Dmaven.repo.local=E:\mozq\apache-maven-3.6.1\repo# 安装到了指定本地仓库[INFO]InstallingE:\mozq\apache-maven-3.6.1\jars\poi-3.10.1.jar to E:\mozq\apache-maven-3.6.1\repo\org\apache\poi\poi\3.10.1\poi-3.10.1.jar C:\Users\1>mvn install:instal...
mvn install:install-file -DgroupId=com.danga -DartifactId=memcached -Dversion=2.0.1 -Dfile=java_memcached-release_2.0.1.jar -Dpackaging=jar \-DgeneratePom=true This will add the memcache jar into your local Maven2 repository under groupId com.danga and artifactId memcached, you can then ...
mvn install:install-file -DgroupId=com.danga -DartifactId=memcached -Dversion=2.0.1 -Dfile=java_memcached-release_2.0.1.jar -Dpackaging=jar \-DgeneratePom=true 1. This will add the memcache jar into your local Maven2repositoryunder groupId com.danga and artifactId memcached, you can then...
mvn install:install-file -DgroupId=com.danga -DartifactId=memcached -Dversion=2.0.1 -Dfile=java_memcached-release_2.0.1.jar -Dpackaging=jar \-DgeneratePom=true This will add the memcache jar into your local Maven2repositoryunder groupId com.danga and artifactId memcached, you can then edit...
对utils模块使用install命令: 这时就可以看到在本地仓库中同步了jar包。 这时再对common模块编译: 通过,这时把本地仓库下的Utils-0.0.1-SNAPSHOT.jar删掉,再编译依旧会报错。 结论: 所以,验证之后对Maven编译和多模块间的依赖有了理解,虽然这可能是Maven本身的基础知识,但因为一直对Maven没有研究,只是凭pom文件中...
由于有些Jar包不是开源的,在maven remote repositories找不到相应的包,所以得通过自有的Jar包在local repositories中添加jar。然后在pom.xml中添加相应的dependency,就能用本地的jar了。 首先,在本地在添加Jar,它的格式为: mvn install:install-file -Dfile=<path-to-file> ...
假设编译打包好的jar包叫hello-world.jar,为了符合Maven的规定,需要给hello-world.jar一个版本号,故将hello- world.jar改名为hello-world-1.0.jar,此后便可以用mvn来安装此包到Maven的local repository中了:mvn install:install-file -Dfile=path/to/hello-world-1.0.jar -DgroupId=com....
你好:安装jar命令 安装到本地库 mvn install:install-file -Dfile=/home/admin/zhaoyw/poi.jar -DgroupId=com.alibaba.external -DartifactId=poi -Dversion=3.7 -Dpackaging=jar 这个方法在团队开发中不适用,最好是加入到私服中 参数不明白可以追问 ...