Alina Dolgikh [JB]
Simon Marquis
04/30/2024, 5:06 PMkotlin-dsl
plugin. The recommendation is to add the kotlin("jvm")
plugin to ensure the proper version, but again, it will fail and Gradle will complain that it can't find the proper jvm plugin. I ended up replicating parts of the gradle-profiler scenarios and run them manually. 😕Nataliya Valtman
05/02/2024, 9:34 AMkotliln("jvm")
plugin is applied?Simon Marquis
05/02/2024, 9:37 AMPlugin [id: 'org.jetbrains.kotlin.jvm'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (plugin dependency must include a version number for this source)
Simon Marquis
05/02/2024, 9:38 AMWARNING: Unsupported Kotlin plugin version.
The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `1.9.20` that might work differently than in the requested version `1.9.23`.
tapchicoma
05/02/2024, 11:17 AMtapchicoma
05/02/2024, 11:18 AMkotlin("jvm")
plugin are you applying?Simon Marquis
05/02/2024, 11:19 AMplugins {
kotlin("jvm")
`kotlin-dsl`
}
tapchicoma
05/02/2024, 11:20 AMkotlin_version
property:
plugins {
val kotlinVersion = System.getenv("kotlin_version")
kotlin("jvm") version(kotlinVersion)
`kotlin-dsl`
}
Simon Marquis
05/02/2024, 11:32 AMPlugin [id: 'org.jetbrains.kotlin.plugin.compose', version: '1.9.23', apply: false] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Included Builds (No included builds contain this plugin)
- Plugin Repositories (could not resolve plugin artifact 'org.jetbrains.kotlin.plugin.compose:org.jetbrains.kotlin.plugin.compose.gradle.plugin:1.9.23')
Searched in the following repositories:
Google
MavenRepo
Gradle Central Plugin Repository
Simon Marquis
05/02/2024, 11:43 AMSimon Marquis
05/02/2024, 11:44 AMgit-checkout
parameter, and instead uses the HEADtapchicoma
05/02/2024, 11:59 AMSimon Marquis
05/03/2024, 10:06 PM