티스토리 뷰
Trouble Shooting history
When I run gradle, I got below message.
$ Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
So, first I put --warning-mode=all
to gradle command like below.
$ ./gradlew clean build --warning-mode=all
And I find DefaultSourceDirectorySet
class's constructor has been deprecated (below detail message)
Configure project :
The DefaultSourceDirectorySet constructor has been deprecated. This is scheduled to be removed in Gradle 6.0. Please use the ObjectFactory service to create instances of SourceDirectorySet instead.
Kotlin 1.3.20 was released and also updated in the Gradle repository
so this issue should be solved by updating the Kotlin Gradle plugin to 1.3.20
'Architecture > Back-End' 카테고리의 다른 글
[Trouble Shooting] How to solve DataSourceBeanCreationException (0) | 2019.09.13 |
---|---|
[Gradle] Gradle Caching and Builds (0) | 2019.09.10 |
[Jekyll] cannot load Jekyll-include-cache (0) | 2019.09.06 |
[Spring Boot] How to create new spring boot project with customizing (0) | 2019.08.28 |
[TroubleShooting] runApplication not found (0) | 2019.08.27 |
TAG
more
Recent Post