这里使用最新版本的nexus3.11作为演示,nexus作为maven构建的仓库。
使用演示
依赖docker
非挂载方式运行
docker run -p 8081:8081 -dti dounine/nexus /nexus/bin/nexus run
将仓库文件保存到本地方式运行
docker run -p 8081:8081 -v /xxxx/nexus/storage:/sonatype-work -dti dounine/nexus /nexus/bin/nexus run
访问http://localhost:8081
默认用户与密码:admin admin123
nexus
Java gradle简单配置使用
build.gradle
apply plugin: 'java'apply plugin: 'maven'group 'com.dounine.nexus'sourceCompatibility = 1.8
version = '0.0.1-SNAPSHOT'ext {
nexusUrl="http://localhost:8081"
username="admin"
password="admin123"}
uploadArchives {
repositories {
mavenDeployer {
repository(url: "${nexusUrl}/repository/maven-releases/") {
authentication(userName: "${username}", password: "${password}")
}
snapshotRepository(url: "${nexusUrl}/repository/maven-snapshots/") {
authentication(userName: "${username}", password: "${password}")
}
}
}
}
repositories {
maven { if (project.version.endsWith('-SNAPSHOT')) {
url = "${nexusUrl}/repository/maven-snapshots/"
} else {
url = "${nexusUrl}/repository/maven-releases/"
}
credentials {
username "${username}"
password "${password}"
}
}
mavenLocal()
mavenCentral()
}打包代码上传到仓库
gradle uploadArchives
显示结果如下
gradle uploadArchives Could not find metadata com.dounine.nexus:api:0.0.1-SNAPSHOT/maven-metadata.xml in remote (http://localhost:8081/repository/maven-snapshots/) Could not find metadata com.dounine.nexus:api/maven-metadata.xml in remote (http://localhost:8081/repository/maven-snapshots/) BUILD SUCCESSFUL in 0s3 actionable tasks: 1 executed, 2 up-to-date
作者:dounine
链接:https://www.jianshu.com/p/5927fee42517
點擊查看更多內容
為 TA 點贊
評論
評論
共同學習,寫下你的評論
評論加載中...
作者其他優(yōu)質文章
正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
