zt
08/08/2024, 5:22 AMincludeBuild
to test some patches but I get some error messages. Is there some way to get it to work?
* Exception is:
org.gradle.api.internal.provider.MissingValueException: Cannot query the value of this provider because it has no value available.
at org.gradle.api.internal.provider.AbstractMinimalProvider.calculateOwnPresentValue(AbstractMinimalProvider.java:82)
at org.gradle.api.internal.provider.AbstractMinimalProvider.get(AbstractMinimalProvider.java:100)
at Kotlin_bootstrap_settings_gradle.<init>(kotlin-bootstrap.settings.gradle.kts:301)
at Program.execute(Unknown Source)
tapchicoma
08/08/2024, 6:55 AMkotlin.git/gradle.properties
are required to be present in your project gradle.properties
zt
08/08/2024, 3:06 PMCircular dependency between the following tasks:
:kotlin:daemon-common:classes
\--- :kotlin:daemon-common:compileJava
+--- :kotlin:daemon-common:compileKotlin
| +--- :kotlin:kotlin-annotations-jvm:jar
| | +--- :kotlin:kotlin-annotations-jvm:classes
| | | \--- :kotlin:kotlin-annotations-jvm:compileJava
| | | +--- :kotlin:kotlin-annotations-jvm:compileKotlin
| | | | +--- :kotlin:kotlin-daemon-embeddable:embeddable
| | | | | \--- :kotlin:kotlin-daemon:jar
| | | | | +--- :kotlin:daemon-common:jar
| | | | | | +--- :kotlin:daemon-common:classes (*)
| | | | | | +--- :kotlin:daemon-common:compileJava (*)
| | | | | | \--- :kotlin:daemon-common:compileKotlin (*)
| | | | | +--- :kotlin:kotlin-daemon:classes
| | | | | | \--- :kotlin:kotlin-daemon:compileJava
| | | | | | +--- :kotlin:daemon-common:jar (*)
| | | | | | +--- :kotlin:kotlin-annotations-jvm:jar (*)
| | | | | | +--- :kotlin:kotlin-build-common:jar
| | | | | | | +--- :kotlin:kotlin-build-common:classes
| | | | | | | | \--- :kotlin:kotlin-build-common:compileJava
| | | | | | | | +--- :kotlin:kotlin-annotations-jvm:jar (*)
| | | | | | | | +--- :kotlin:kotlin-build-common:compileKotlin
| | | | | | | | | +--- :kotlin:kotlin-annotations-jvm:jar (*)
| | | | | | | | | +--- :kotlin:kotlin-daemon-embeddable:embeddable (*)
| | | | | | | | | +--- :kotlin:kotlin-reflect:compileJava
| | | | | | | | | | +--- :kotlin:kotlin-reflect-api:jar
| | | | | | | | | | | +--- :kotlin:kotlin-reflect-api:classes
tapchicoma
08/08/2024, 3:19 PMzt
08/08/2024, 3:26 PMtapchicoma
08/08/2024, 4:16 PMkotlin-annotations-jvm
in daemon-common
🤔zt
08/08/2024, 5:48 PMtapchicoma
08/08/2024, 7:31 PMkotlin.git
- if Gradle sees maven dependency with the same coordinates (except version) as existing project coordinates - Gradle replaces it with project dependency. We are "suffering" from it trying to force Kotlin bootstrap versions. Try to apply something similar in your root project + this settings script.zt
08/08/2024, 11:42 PM