Skip to content

Commit

Permalink
Rename runner included builds by moving
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnatBeresnev committed Oct 31, 2023
1 parent cbb3b98 commit d4c2058
Show file tree
Hide file tree
Showing 88 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("dokkabuild.base")
}

val publishedIncludedBuilds = listOf("cli", "gradle-plugin-classic", "maven-plugin")
val publishedIncludedBuilds = listOf("runner-cli", "runner-gradle-classic", "runner-maven")

addDependencyOnSameTaskOfIncludedBuilds("assemble")
addDependencyOnSameTaskOfIncludedBuilds("build")
Expand All @@ -26,7 +26,7 @@ registerParentTaskOfPublishedIncludedBuilds("publishAllPublicationsToSpaceTestRe
registerParentTaskOfPublishedIncludedBuilds("publishToMavenLocal", groupName = "publication")

registerParentTaskOfIncludedBuilds("publishPlugins", groupName = "publication") {
it.name == "gradle-plugin-classic"
it.name == "runner-gradle-classic"
}

tasks.register("integrationTest") {
Expand Down
2 changes: 1 addition & 1 deletion dokka-integration-tests/gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
}

val dokkaSubprojects = gradle.includedBuild("dokka")
val gradlePluginClassic = gradle.includedBuild("gradle-plugin-classic")
val gradlePluginClassic = gradle.includedBuild("runner-gradle-classic")

tasks.integrationTest {
dependsOn(
Expand Down
2 changes: 1 addition & 1 deletion dokka-integration-tests/maven/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
}

val dokkaSubprojects = gradle.includedBuild("dokka")
val mavenPlugin = gradle.includedBuild("maven-plugin")
val mavenPlugin = gradle.includedBuild("runner-maven")

tasks.integrationTest {
dependsOn(
Expand Down
6 changes: 3 additions & 3 deletions dokka-integration-tests/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ dependencyResolutionManagement {
}
}

includeBuild("../dokka-runners/gradle-plugin-classic")
includeBuild("../dokka-runners/cli")
includeBuild("../dokka-runners/maven-plugin")
includeBuild("../dokka-runners/runner-gradle-classic")
includeBuild("../dokka-runners/runner-cli")
includeBuild("../dokka-runners/runner-maven")
includeBuild("../.") // include the very root aggregating build so that we can depend on its tasks

include(
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

@file:Suppress("UnstableApiUsage")

rootProject.name = "cli"
rootProject.name = "runner-cli"

pluginManagement {
includeBuild("../../build-logic")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

@file:Suppress("UnstableApiUsage")

rootProject.name = "gradle-plugin-classic"
rootProject.name = "runner-gradle-classic"

pluginManagement {
includeBuild("../../build-logic")
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

@file:Suppress("UnstableApiUsage")

rootProject.name = "maven-plugin"
rootProject.name = "runner-maven"

pluginManagement {
includeBuild("../../build-logic")
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ plugins {
}

includeBuild("dokka-integration-tests")
includeBuild("dokka-runners/gradle-plugin-classic")
includeBuild("dokka-runners/maven-plugin")
includeBuild("dokka-runners/cli")
includeBuild("dokka-runners/runner-gradle-classic")
includeBuild("dokka-runners/runner-maven")
includeBuild("dokka-runners/runner-cli")

include(
":docs-developer",
Expand Down

0 comments on commit d4c2058

Please sign in to comment.