Gradle
다음 을 말하는 가장 쉬운 방법은 무엇입니까?
'junit'종속성을 검색하고 최신 '릴리스'버전을 가져옵니다.
Maven 및 Ivy 저장소를 관리하는 것은 나에게 일종의 새로운 일입니다. 다음 단계를 시도했지만 Could not resolve dependency ...
오류가 발생했습니다.
compile "junit:junit:latest.release"
저장소 만로 설정하여 작성 합니다mavenCentral()
(그러나 "junit : junit : 4.10"이라고 말하면 작동 함).compile "junit:junit:latest.release"
다음과 같은 방법으로 저장소 세트로 작성 하십시오.ivy { // I also tried 'http://maven.org' and other possible variants. url "http://repo1.maven.org" layout "maven" }
Spring Source Ivy 저장소를 사용하려고 시도했습니다.
ivy { artifactPattern "http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" ivyPattern "http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" }
내가 뭔가를 오해했을 수도 있습니다. 최신 버전의 종속성을 얻는 것이 왜 그렇게 어려운 작업입니까?
latest.integration
. 동적 버전에 대한 gradle 문서