Slackbot
01/12/2023, 4:36 PMSlackbot
01/16/2023, 11:33 AMSlackbot
01/17/2023, 3:21 PMSlackbot
01/17/2023, 3:22 PMSlackbot
01/17/2023, 10:04 PMSlackbot
01/18/2023, 9:42 AMPhilip W
01/18/2023, 7:25 PMimplementation
in my build.gradle of the included convention build project. Does the settings file share its classpath with the dependencies of the included build? Reason: I need to apply for both plugins its version, I though setting the version once would be enough.Slackbot
01/23/2023, 8:07 AMSlackbot
01/24/2023, 9:06 PMSlackbot
01/26/2023, 2:33 PMSlackbot
01/27/2023, 7:27 PMAndrew Lethbridge
01/30/2023, 5:30 PMplugins {
kotlin("jvm") version "1.7.20"
id("my-custom-binary-plugin")
}
If I do this approach everything works fine.
However I want the plugin “my-custom-binary-plugin” to apply a bunch of Kotlin conventions so I need access to the class references.
I’ve tried both
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
and also
buildscript {
repositories {
dependencies {
classpath("my-custom-binary-plugin:4.23.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
}
}
Both of these approaches work in the sense that I am able to find the class files just fine and apply the conventions I want to. However in both of these examples, I start to get random exceptions which point to a classpath issue in a separate library. I do not get that same classpath issue when using the plugins {} DSL in the build script, even though I would expect their classpaths to be the same but there seems to be something else going on behind the scenes in these two approaches.Slackbot
01/31/2023, 7:04 PMSlackbot
02/02/2023, 5:32 AMSlackbot
02/03/2023, 10:07 AMSlackbot
02/03/2023, 3:58 PMSlackbot
02/07/2023, 3:34 PMSlackbot
02/10/2023, 3:41 PMSlackbot
02/13/2023, 11:21 AMSlackbot
02/14/2023, 10:39 AMSlackbot
02/15/2023, 11:54 AMMartin
02/16/2023, 12:43 PMSlackbot
02/17/2023, 2:05 PMSlackbot
02/18/2023, 11:25 PMSlackbot
02/20/2023, 6:06 PMSlackbot
02/20/2023, 9:42 PMSlackbot
02/21/2023, 9:52 AMSlackbot
02/21/2023, 12:39 PMSlackbot
02/24/2023, 4:57 AMSlackbot
02/24/2023, 6:38 PM