빽기의 코딩공부Story

[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기3 본문

[OS]/[CentOS]

[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기3

빽기 2021. 1. 16. 16:45

■gradle 다운로드

gradle.org/releases/

 

Gradle | Releases

Find binaries and reference documentation for current and past versions of Gradle.

gradle.org

binary-only 또는 complete 다운로드

■ 압축 풀기 

환경변수 설정

■ 프로젝트 생성

/*
 * This file was generated by the Gradle 'init' task.
 *
 * This is a general purpose Gradle build.
 * Learn more about Gradle by exploring our samples at https://docs.gradle.org/6.7.1/samples
 */
 plugins {
	id 'maven'
}
repositories {
    maven {
        url "http://localhost:8081/repository/maven-public/"
    }
}

uploadArchives {
    repositories {
        mavenDeployer {
            repository(url: "http://localhost:8081/repository/maven-releases/") {
                authentication(userName: nexusUsername, password: nexusPassword)
            }
            snapshotRepository(url: "http://localhost:8081/repository/maven-snapshots/") {
                authentication(userName: nexusUsername, password: nexusPassword)
            }
        }
    }
}

Comments