Skip to content

Commit

Permalink
Moved all subprojects under a folder of that name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ianbrandt committed Sep 9, 2024
1 parent b3999e0 commit c7eb89d
Show file tree
Hide file tree
Showing 175 changed files with 20 additions and 20 deletions.
24 changes: 12 additions & 12 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ rootProject.name = "sd-kotlin-talks"

includeBuild("platforms")

include("di-with-koin")
include("effective-kotlin")
include("kotlin-dl")
include("kotlin-for-java-devs")
include("kotlin-for-java-devs-client")
include("ksp-builder-generator:api:annotations")
include("ksp-builder-generator:api:builder")
include("ksp-builder-generator:processor")
include("ksp-builder-generator:processor:test-project")
include("sorting-in-kotlin")
include("tdd-in-kotlin")
include("typed-errors-in-kotlin")
include("subprojects:di-with-koin")
include("subprojects:effective-kotlin")
include("subprojects:kotlin-dl")
include("subprojects:kotlin-for-java-devs")
include("subprojects:kotlin-for-java-devs-client")
include("subprojects:ksp-builder-generator:api:annotations")
include("subprojects:ksp-builder-generator:api:builder")
include("subprojects:ksp-builder-generator:processor")
include("subprojects:ksp-builder-generator:processor:test-project")
include("subprojects:sorting-in-kotlin")
include("subprojects:tdd-in-kotlin")
include("subprojects:typed-errors-in-kotlin")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {

dependencies {

api(projects.kotlinForJavaDevs)
api(projects.subprojects.kotlinForJavaDevs)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {

dependencies {

implementation(projects.kspBuilderGenerator.api.annotations)
implementation(projects.kspBuilderGenerator.api.builder)
implementation(projects.subprojects.kspBuilderGenerator.api.annotations)
implementation(projects.subprojects.kspBuilderGenerator.api.builder)

implementation(libs.bundles.kotlinpoet.ksp)
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {

dependencies {

api(projects.kspBuilderGenerator.api.annotations)
api(projects.kspBuilderGenerator.api.builder)
api(projects.subprojects.kspBuilderGenerator.api.annotations)
api(projects.subprojects.kspBuilderGenerator.api.builder)

ksp(projects.kspBuilderGenerator.processor)
ksp(projects.subprojects.kspBuilderGenerator.processor)
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies {

testImplementation(platform("org.sdkotlin.platforms:test-platform"))

testImplementation(testFixtures(projects.tddInKotlin))
testImplementation(testFixtures(projects.subprojects.tddInKotlin))

// Work around https://github.com/autonomousapps/dependency-analysis-gradle-plugin/issues/972.
testImplementation(projects.tddInKotlin)
testImplementation(projects.subprojects.tddInKotlin)

testImplementation(libs.kotest.assertions.shared)
testImplementation(libs.kotest.framework.api.jvm)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c7eb89d

Please sign in to comment.