安装到本地仓库
引入插件
1 | apply plugin: 'maven-publish' |
配置pulishing
1 | publishing { |
执行命令
1 | gradle publishToMavenLocal |
idea工具中也有该命令,可直接执行。
安装到远程仓库
其他步骤同上
配置远程仓库地址
在publishing中配置远程仓库地址
1 | repositories { |
参考文章
1 | apply plugin: 'maven-publish' |
1 | publishing { |
1 | gradle publishToMavenLocal |
idea工具中也有该命令,可直接执行。
其他步骤同上
在publishing中配置远程仓库地址
1 | repositories { |
参考文章