打包上传
- 参照[https://blog.csdn.net/qq_34763130/article/details/89173802]
- 项目模块 build.gradle 里面增加
uploadArchives {
repositories {
mavenDeployer {
pom.artifactId = 'whale-facade'
pom.version = '0.0.1-SNAPSHOT'
repository(url: 'http://nexus.xxxx.com.cn:8081/nexus/content/groups/public/') {
authentication(userName: 'deployment', password: 'xxxx')
}
snapshotRepository(url: 'http://nexus.xxxx.com.cn:8081/nexus/content/repositories/snapshots/') {
authentication(userName: 'deployment', password: 'xxxx')
}
}
}
}
