继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Docker 1分钟搭建Maven仓库Nexus3

慕码人8056858
关注TA
已关注
手记 1092
粉丝 350
获赞 1320

这里使用最新版本的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

webp

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


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP