maven 常用命令整理
上传本地的 jar 包到私库:
命令:
mvn deploy:deploy-file -Dfile=E:\aspose-words.jar
-DgroupId=com.aspose
-DartifactId=aspose-words
-Dversion=16.4.0
-Dpackaging=jar
-Durl=http://localhost:8081/repository/maven-releases/
-DrepositoryId=nexus-release
说明:
- -Dfile:jar 包路径
- -DgroupId:groupId 项目组 id
- -DartifactId:artifactId 项目名字
- -Dversion:版本
- -Dpackaging:包类型如 jar/zip
- -Durl:私库地址
- -DrepositoryId:仓库 id 号,就是 settings.xml 中给私库设置的 id 号
安装本地 jar 包到本地仓库:
命令:
mvn install:install-file -Dfile=E:\itext.jar
-DgroupId=com.lowagie
-DartifactId=itext
-Dversion=2.0.8
-Dpackaging=jar
-DgeneratePom=true
说明:
- -Dfile:jar 包路径
- -DgroupId:groupId 项目组 id
- -DartifactId:artifactId 项目名字
- -Dversion:版本
- -Dpackaging:包类型如 jar/zip
- -DgeneratePom:是否创建 pom 文件
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于