Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 유닉스
- 사설 저장소
- oracle error
- nexus repository
- bootjar 상속받기
- nfs
- bootJar
- 가상머신
- 외부 프로젝트 상속
- 인텔리제이
- 리눅스 설치
- 자바 프로그래밍
- maven 저장소
- vi명령어
- 리눅스
- HTTP
- nexus maven
- 오라클
- jar 상속받기
- 저장소
- Nexus 3 Repository
- iftables
- vm
- 오라클 에러
- NFS 구축
- 오라클 에러 정리
- oracle
- 스프링부트 상속
- nexus3
- java
Archives
- Today
- Total
빽기의 코딩공부Story
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기3 본문
■gradle 다운로드
Gradle | Releases
Find binaries and reference documentation for current and past versions of Gradle.
gradle.org
■ 압축 풀기
■ 환경변수 설정
■ 프로젝트 생성
/*
* 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)
}
}
}
}
끝
'[OS] > [CentOS]' 카테고리의 다른 글
[Sonatype Nexus 3] CentOS 7 "Nexus 3" Maven 저장소 구축하기3 (0) | 2021.01.25 |
---|---|
[Sonatype Nexus 3] CentOS 7 "Nexus 3" Maven 저장소 구축하기1 (0) | 2021.01.25 |
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기2 (0) | 2021.01.16 |
[Sonatype Nexus 3] Windows 10 "Nexus 3" Maven 저장소 구축하기1 (0) | 2021.01.15 |
[Sonatype Nexus 3] Windows 10 "Nexus 3" 설치하기 (0) | 2021.01.15 |
Comments