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 | 29 | 30 |
Tags
- 레트로핏
- Gradle
- viewpager
- Kotlin
- 코틀린
- 스튜디오
- 코루틴
- coroutine
- dart
- WebView
- 안드로이드 스튜디오
- 의존성주입
- 안스
- Retrofit
- ADB
- 안드로이드스튜디오
- flow
- MVVM
- Android
- error
- Github
- 에러
- build
- RecyclerView
- 웹뷰
- image
- 안드로이드
- 깃헙
- studio
- 유튜브
Archives
- Today
- Total
코딩하는 일용직 노동자
junit5:1.6.1.0 Received status code 502 from server: Bad Gateway 빌드에러 해결사례 본문
안드로이드
junit5:1.6.1.0 Received status code 502 from server: Bad Gateway 빌드에러 해결사례
bacass 2024. 12. 13. 13:20사용중인 프로젝트의 서브모듈 build.gradle에 아래처럼 junit5 가 설정되어 있다.
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.6.1.0"
이런경우 아래처럼 빌드에러가 발생한다.
Could not GET 'https://artifacts.adsmoloco.com:443/artifactory/libs-release-local/de/mannodermaus/gradle/plugins/android-junit5/1.6.1.0/android-junit5-1.6.1.0.pom'. Received status code 502 from server: Bad Gateway
내용을 보니 junit5-1.6.1.0 버전 파일을 다운로드 받지 못한다.
아무래도 해당 버전이 더이상 지원되지 않는것인듯하다.
구글링해보니 이미 나와 같은 오류를 겪은 사람이 꽤 있나보다.
버전을 junit5:1.8.2.1 로 수정하니 해결되었다.
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.8.2.1"
'안드로이드' 카테고리의 다른 글
모바일 핫스팟 및 테더링 메뉴 바로가기 intent (0) | 2025.01.22 |
---|---|
CoroutineFlow에서 Hot Stream과 Cold Stream 이란? (0) | 2024.09.07 |
android:duplicateParentState 속성에 대하여... (0) | 2024.07.24 |
java.lang.SecurityException: Writable dex file '...classes2.dex' is not allowed. 에러 해결 (0) | 2024.05.27 |
Compose Row&Column 의 배치속성 (0) | 2024.05.21 |