Live2D

将私有依赖打入本地maven仓库命令

在cmd中执行mvn命令

前提是有mavne环境变量

-Dfile=依赖的绝对路径

-DgroupId=依赖的groupId

-DartifactId=依赖的artifactId

例如

<dependency>
    <groupId>org.apache.shiro</groupId>
    <artifactId>shiro-web</artifactId>
    <version>1.0</version>
</dependency>

 

将私有依赖打包进本地maven库命令

mvn install:install-file -Dfile=G://shiro-web-1.0.jar -DgroupId=org.apache.shiro -DartifactId=shiro-web -Dversion=1.0 -Dpackaging=jar

将私有依赖上传进线上私有mavne库命令

mvn deploy:deploy-file -DgroupId=org.apache.shiro -DartifactId=shiro-web -Dversion=1.0 -Dpacckaging=jar -Dfile=G://shiro-web-1.0.jar -DrepositoryId=私有仓库名称 -Durl=私有仓库地址

posted @ 2022-09-09 14:08  键盘命  阅读(32)  评论(0编辑  收藏  举报