Docker 1分钟搭建Maven仓库Nexus3

11 篇文章 0 订阅
1 篇文章 0 订阅

这里使用最新版本的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'
apply plugin: 'maven-publish'
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 0s
3 actionable tasks: 1 executed, 2 up-to-date
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值