Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upGradle 4.10-rc1 can't resolve dependency kotlin-scripting-compiler-embeddable #1033
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
eskatos
Aug 13, 2018
Member
With Kotlin 1.2.60, the Kotlin Gradle Plugin driving the kotlin compiler requires extra dependencies that aren't required by Gradle Kotlin DSL scripts alone and aren't embedded into Gradle.
This can be fixed by adding a repository that contains Kotlin compiler dependencies:
repositories {
jcenter()
}In your case it should go into ./buildSrc/build.gradle.kts
|
With Kotlin 1.2.60, the Kotlin Gradle Plugin driving the kotlin compiler requires extra dependencies that aren't required by Gradle Kotlin DSL scripts alone and aren't embedded into Gradle. This can be fixed by adding a repository that contains Kotlin compiler dependencies: repositories {
jcenter()
}In your case it should go into |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
tagantroy
commented
Aug 13, 2018
|
@eskatos thank you. Solved. |
tagantroy
closed this
Aug 13, 2018
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
AlexCzar
Sep 25, 2018
I think this should be added to release notes. I've just wasted half an hour on troubleshooting and then found this issue.
AlexCzar
commented
Sep 25, 2018
•
|
I think this should be added to release notes. I've just wasted half an hour on troubleshooting and then found this issue. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Asad-Khan-Aasanjobs
Sep 28, 2018
Thanks, @eskatos
I seem to have missed this part when reading about upgrading to Gradle 4.10
Asad-Khan-Aasanjobs
commented
Sep 28, 2018
|
Thanks, @eskatos |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
wuchengithub
Oct 10, 2018
With Kotlin 1.2.60, the Kotlin Gradle Plugin driving the kotlin compiler requires extra dependencies that aren't required by Gradle Kotlin DSL scripts alone and aren't embedded into Gradle.
This can be fixed by adding a repository that contains Kotlin compiler dependencies:
repositories { jcenter() }In your case it should go into
./buildSrc/build.gradle.kts
big big big help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
wuchengithub
commented
Oct 10, 2018
big big big help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
tagantroy commentedAug 13, 2018
After upgrade to Gradle 4.10-rc1 i faced with this problem while gradle sync:
Link to demo project: Malinskiy/marathon#84