gradle에서 remote maven repository 에서 pom/ jar를 못 읽어올 때가 있다. (ex : android test 관련 lib등등..)
그럴 때는 gradle이 maven local repository에서 읽어 오도록 수정하면 동작이 된다.
아래와 같이.. 사용하면 될 것 같다.
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
'general java' 카테고리의 다른 글
[Spring Boot] Actuator 예제 (0) | 2015.05.27 |
---|---|
STS(spring tool suite)에서 spring boot 애플리케이션 지원 (0) | 2015.05.27 |
[spring boot] logback.xml과 application.yml의 로그 설정 우선 순위 (0) | 2015.05.22 |
[spring boot] application.yml 에서 profiles 별 정리 (0) | 2015.05.22 |
[spring boot] pid/port 번호 생성 (0) | 2015.05.22 |