File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed
plugin-api/plugin-builder Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -628,10 +628,11 @@ tasks.register<Copy>("copyPluginApiJarToAssets") {
628628}
629629
630630tasks.register<Zip >(" createPluginArtifactsZip" ) {
631- dependsOn(" copyPluginApiJarToAssets" , " :plugin-api:plugin-builder:jar" )
631+ dependsOn(" copyPluginApiJarToAssets" )
632+ dependsOn(gradle.includedBuild(" plugin-builder" ).task(" :jar" ))
632633
633634 from(rootProject.file(" assets/plugin-api.jar" ))
634- from(project( " : plugin-api: plugin-builder" ).layout.buildDirectory.file( " libs/plugin-builder-1.0.0.jar" )) {
635+ from(rootProject.file( " plugin-api/ plugin-builder/build/ libs/plugin-builder-1.0.0.jar" )) {
635636 rename { " gradle-plugin.jar" }
636637 }
637638
Original file line number Diff line number Diff line change 1+ rootProject.name = " plugin-builder"
2+
3+ dependencyResolutionManagement {
4+ repositories {
5+ google()
6+ mavenCentral()
7+ gradlePluginPortal()
8+ }
9+ }
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ pluginManagement {
2323 includeBuild(" composite-builds/build-logic" ) {
2424 name = " build-logic"
2525 }
26+ includeBuild(" plugin-api/plugin-builder" ) {
27+ name = " plugin-builder"
28+ }
2629
2730 repositories {
2831 gradlePluginPortal()
@@ -176,7 +179,6 @@ include(
176179 " :testing:tooling" ,
177180 " :testing:unit" ,
178181 " :plugin-api" ,
179- " :plugin-api:plugin-builder" ,
180182 " :plugin-manager" ,
181183 " :llama-api" ,
182184 " :llama-impl"
You can’t perform that action at this time.
0 commit comments