In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
这篇文章主要介绍"gradle怎么打包发布到maven的nexus仓库",在日常操作中,相信很多人在gradle怎么打包发布到maven的nexus仓库问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"gradle怎么打包发布到maven的nexus仓库"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
前提背景
公司要封装一个工具类,把常用的mybatis,apollo,redis,初始化运行检查等等都封装在一起,项目建好了,但是打包发布nexus之后,别的项目死活拉不到依赖包,经查,是gradle打包时生成的pom文件中没有加入模块依赖.
以前的解决方案及问题
以前公司用gradle打包的时候,先新建一个maven_push.gradle ,然后在要打包的模块build.gradle中加上一句
apply from: '../maven_push.gradle'
maven_push.gradle的内容如下:
// The Maven plugin adds support for deploying artifacts to Maven repositories.// 一个可以让你把库上传到maven仓库的插件apply plugin: 'maven'// The signing plugin adds the ability to digitally sign built files and artifacts. These digital signatures can then be used to prove who built the artifact the signature is attached to as well as other information such as when the signature was generated.// 对库文件进行数字签名的插件,可以通过签名知道谁创建了这个库文件,签名的时间等等信息apply plugin: 'signing'
// 声明变量记录maven库地址def mavenRepositoryUrl// 判断是发布到正式库,还是snapshots库if (isReleaseBuild()) { println 'RELEASE BUILD' // 下面的库地址指向的是我们私有仓库的Releases 仓库 mavenRepositoryUrl = "http://xxx.com/repository/maven-public/"} else { println 'SNAPSHOTS BUILD' // 下面的库地址指向的是我们私有仓库的snapshots 仓库 mavenRepositoryUrl = "http://xxxx.com/repository/maven-snapshots/"}
// 根据我们在likelib下gradle.properties中声明的版本名称,来分辨是Release版本还是 snapshots版本def isReleaseBuild() { return !VERSION_NAME.contains("SNAPSHOT");}
afterEvaluate { project -> // 我们声明我们要执行的上传到maven的task uploadArchives { repositories { mavenDeployer { beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) } // 我们类比下compile com.squareup.okhttp:okhttp:2.7.0 // artifactId 对应com.squareup.okhttp; groupId 对应okhttp;version对应2.7.0 // 这样就类似坐标的方式定位到了制定的库文件 pom.artifactId = POM_ARTIFACT_ID pom.groupId = POM_GROUP_ID pom.version = VERSION_NAME
// 授权验证,这里也就是你登陆搭建的私服服务器时候的用户名\密码 repository(url: mavenRepositoryUrl) { authentication(userName: getRepositoryUsername(), password: getRepositoryPassword()) } // 这里是配置我们maven库需要的pom.xml文件的各个内容,具体意思我们在主目录gradle.properties中解释 pom.project { name POM_NAME packaging POM_PACKAGING description POM_DESCRIPTION url POM_URL
} } } }
// 进行数字签名 signing { required { isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives") } sign configurations.archives }
}
这样是可以打包,但是对模块依赖就没办法打包,如gradle依赖配置如下:
dependencies { compile project(":tools-mybatis") compile project(":tools-ops")}
但打包出来的pom.xml文件里面并没有这两个依赖.
新的打包方案
上述通过 maven 插件可能还有别的姿试可以打包,但是没有找到,通过查找官方文档,找到了以下解决方案
引入 maven-publish,这个plugin , 然后在模块build.gradle中加入配置:
publishing { publications { maven(MavenPublication) { groupId = group artifactId = 'tools-starter' version = version from components.java } } repositories {
maven { url "http://xxxx.com/repository/maven-snapshots/" credentials { username 'xxx' password 'xxxx' } }
}}
这样就可以通过Idea右边gradle工具栏的插件菜单来发布了
The resulting pom.xml contains both dependencies.
At this point, the study of "how to package gradle and publish it to maven's nexus repository" is over, hoping to solve everyone's doubts. Theory and practice can better match to help everyone learn, go and try it! If you want to continue learning more relevant knowledge, please continue to pay attention to the website, Xiaobian will continue to strive to bring more practical articles for everyone!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.