maven安装本地jar到本地仓库

注册到本地仓库

mvn install:install-file -DgroupId=cn.endv -DartifactId=endv-api -Dversion=1.0.1 -Dpackaging=jar -Dfile=D:\endv-run\endv\endv-api\target\endv-api-1.0.1.jar

引用

<dependency>
    <groupId>cn.endv</groupId>
    <artifactId>endv-api</artifactId>
    <version>1.0.1</version>
</dependency>  

原文地址:https://www.cnblogs.com/endv/p/11251845.html

时间: 2024-10-07 16:11:49

maven安装本地jar到本地仓库的相关文章

maven 安装第三方jar到本地 出现 The goal you specified requires a project to execute but there is no POM in this directory 错误

原因是因为操作系统的差异导致,把所有参数加上引号即可. 如下所示: mvn install:install-file "-Dfile=cobra.jar" "-DgroupId=com.cobra" "-DartifactId=cobra" "-Dversion=0.98.4" "-Dpackaging=jar" "-DgeneratePom=true" 详见http://stackov

maven添加本地jar到本地仓库

安装指定文件到本地仓库命令: mvn install:install-file -DgroupId= : 设置项目代码的包名(一般用组织名) -DartifactId= : 设置项目名或模块名 -Dversion=1.0.0 : 版本号 -Dpackaging=jar : 什么类型的文件(jar包) -Dfile=<myfile.jar> : 指定jar文件路径与文件名(同目录只需文件名) 安装命令实例: mvn install:install-file -DgroupId=com.baidu

maven安装三方jar包

mvn install:install-file -DgroupId=thirdpart //groupId -DartifactId=wlfullclient  //artifactId -Dversion=1.0 //版本 -Dpackaging=jar  //package -Dfile=C:/git/workspace/monitor/lib/wlfullclient-1.0.jar //本地jar的路径

maven安装第三方jar包到本地仓库

添加项目依赖的时候,有些jar下载不下来,只有手动下载或安装到本地仓库了 首先下载所需要的jar,放到指定的文件夹 然后执行如下命令: mvn install:install-file -Dfile=kaptcha-2.3.jar -DgroupId=com.google.code.kaptcha -DartifactId=kaptcha -Dversion=2.3 -Dpackaging=jar 3.然后将生成的文件全部复制到对应的本地仓库文件夹下就可以了

maven安装自定义jar包到本地仓库并下载

本地仓库找到安装的位置: <?xml version="1.0" encoding="UTF-8"?> <metadata> <groupId>cn.yxyu.app</groupId> <artifactId>my-app</artifactId> <versioning> <release>1.0</release> <versions> &l

Maven中安装本地Jar包到仓库中

命令如下: mvn install:install-file -DgroupId=<group_name> -DartifactId=<artifact_name> -Dversion=<version_no> -Dfile=<path_of_the_local_jar> -Dpackaging=jar -DgeneratePom=true 示例: mvn install:install-file -DgroupId=com.jacob -Dartifact

maven 安装alipay-sdk包到本地及远程仓库

安装到本地:mvn install:install-file -DgroupId=com.alipay -DartifactId=sdk-Java -Dversion=*** -Dpackaging=jar -Dfile=alipay-sdk-java*.jar 安装到远程仓库:配置maven: <!-- Another sample, using keys to authenticate. <server> <id>siteServer</id> <pri

发布本地jar到Nexus仓库

mvn deploy:deploy-file -Durl=http://192.168.0.4:8081/nexus/content/repositories/thirdparty -DrepositoryId=thirdparty -Dfile=jmxspi.jar -DgroupId=oracle.as -DartifactId=jmxspi -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true 一定要在settting.xml配置认证. <ser

maven 上传jar到中央仓库

mvn deploy:deploy-file -DgroupId=com.fpx.common -DartifactId=fpx-common-page -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=D:/Maven/repo/com/fpx/common/fpx-common-page/1.0.0-SNAPSHOT/fpx-common-page-1.0.0-SNAPSHOT.jar -DpomFile=D:/Maven/repo/com/fp