Slackbot
08/08/2023, 1:14 PMephemient
08/08/2023, 1:21 PMephemient
08/08/2023, 1:23 PMDavid Gregory
08/08/2023, 1:23 PMDavid Gregory
08/08/2023, 1:23 PMephemient
08/08/2023, 1:24 PMDavid Gregory
08/08/2023, 1:24 PMDavid Gregory
08/08/2023, 1:24 PMephemient
08/08/2023, 1:24 PMDavid Gregory
08/08/2023, 1:25 PMDavid Gregory
08/08/2023, 1:25 PMDavid Gregory
08/08/2023, 1:25 PMephemient
08/08/2023, 1:25 PMephemient
08/08/2023, 1:26 PMapply false if you don't want them applied there) in a parent project, the same plugins when requested in a child project will be reused from the existing classpathDavid Gregory
08/08/2023, 1:26 PMallprojects to apply the pluginDavid Gregory
08/08/2023, 2:07 PMinitscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("com.opencastsoftware.gradle:gradle-bsp-plugin:%%BSP_PLUGIN_VERSION%%") // this bit gets find & replaced
}
}
allprojects {
apply<com.opencastsoftware.gradle.bsp.BspPlugin>()
}
to:
initscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("com.opencastsoftware.gradle:gradle-bsp-plugin:%%BSP_PLUGIN_VERSION%%") // this bit gets find & replaced
}
}
projectsEvaluated {
rootProject.subprojects {
apply<com.opencastsoftware.gradle.bsp.BspPlugin>()
}
}
and this has resolved the issue for the moment. thanks so much for your help with this!David Gregory
08/08/2023, 2:08 PM