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 -DartifactId=ueditor -Dversion=1.0.0 -Dpackaging=jar -Dfile=ueditor-1.1.2.jar

原文地址:https://www.cnblogs.com/caoleiCoding/p/11140544.html

时间: 2024-11-07 14:07:29

maven添加本地jar到本地仓库的相关文章

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<

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

发布本地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到本地 出现 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 添加memcached.jar配置方法

针对Java项目添加 memcahced 在mvnrepository 找了半天也没找到memcached.jar的配置xml, 由于目前Javamemcached client没有官方的maven repository可供使用,因此使用时需要手动将其安装到本地repository.java memcached client的jar包下载地址:https://github.com/gwhalin/Memcached-Java-Client/downloads 目前2.6.6版本的java mem

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

maven添加Spring jar

双击打开,可以直接在pom.xml添加代码,其实对于初学者没必要这样添加,打开后: 点击add: 再添加 spring-webmvc spring-orm 就够springMVC的基本开发了 添加之后,版本不同可能jar包也不同 第一次添加可能会有点慢,需要网络,若出现类似提示 Missing artifact org.springframework:spring-core:jar:4.1.5.RELEASE:compileMissing artifact org.springframework

使用Maven命令安装jar包到仓库中

项目中可能会碰到很多jar包,使用maven update不能更新,或者jar包是拷贝过来,不能编译的情况.此时就需要手动使用命令行安装. 例如Demo项目中提示缺少四个jar包,但是在repo中已经有了,此时可以将四个jar包拷贝至一个文件夹中. 按住shift键,右键选择用命令行打开 命令如下: mvn install:install-file -Dfile=matt-autocode-1.0.0.jar -DgroupId=com.zeei -DartifactId=common -Dve

maven添加本地jar包到maven仓库

maven添加本地jar包到maven仓库mvn install:install-file -DgroupId=io.netty -DartifactId=netty-all -Dversion=5.0.0.Alpha1 -Dpackaging=jar -Dfile=G:/java/jar包/netty-all-5.0.0.Alpha1.jar 我下载的这个 jar 包是放到了 D:\mvn 目录下(D:\mvn\spring-context-support-3.1.0.RELEASE.jar)