일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 특가게시판
- 카드내역 공유
- Android
- onViewCreated
- java.lang.OutOfMemoryError: Java heap space
- moveToState
- Koin
- nvidia-docker
- 안드로이드
- 뷰 상태 저장
- 특가촌
- recyclerview
- 카드 내역 공유 앱
- kotlin
- android clean architecture
- Quickly
- 안드로이드 클린 아키텍쳐
- todofication
- fragment
- 대학톡
- 뷰 상태복구
- 타이머앱
- 작성
- 특가알람
- 올인원타이머
- RxJava
- compileKotlin FAILED
- andorid
- List
- RX
- Today
- Total
seoft
Spring initializr, Gradle, kotlin 후 초기 빌드에러 본문
[문제정의]
https://start.spring.io/ 에서 Gradle, Kotlin, metadata 작성, 생성 후 IntelliJ로 Open하고 바로 빌드시 다음 에러 발생
Cause: org.jetbrains.plugins.gradle.tooling.util.ModuleComponentIdentifierImpl.getModuleIdentifier()Lorg/gradle/api/artifacts/ModuleIdentifier; |
Spring Initializr 에서 Gradle 프로젝트 생성시 버전이 5.2.1로 생성됨(글 작성 시점)
[문제해결]
해당 버전이 아직 불안정해서(?) 버전 다운 그레이드 하면 된다는 stackoverflow글 파악
gradle/wrapper/gradle-wrapper.properties 파일의 distributionUrl 을 gradle-5.2.1-bin.zip 를 gradle-4.9-all.zip 로 수정 후 해결
(bef)
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists |
(after)
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists |
[Ref]
'server' 카테고리의 다른 글
kotlin spring 실행시 Task :compileKotlin FAILED e: java.lang.OutOfMemoryError: Java heap space 에러 (0) | 2022.05.05 |
---|---|
Spring Gradle bootRun시 main으로 인자 전달 및 config 파일에 반영 (1) | 2019.10.07 |