Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
(cherry picked from commit 567e0d5)
  • Loading branch information
ting-yuan authored and KSP Auto Pick committed Nov 22, 2023
1 parent de324d6 commit cdc6517
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions common-util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description = "Kotlin Symbol Processing Util"

val intellijVersion: String by project
val junitVersion: String by project
val kotlinBaseVersion: String by project

tasks.withType<KotlinCompile> {
compilerOptions.freeCompilerArgs.add("-Xjvm-default=all-compatibility")
Expand Down Expand Up @@ -34,6 +35,7 @@ dependencies {
}

implementation(project(":api"))
implementation(kotlin("stdlib", kotlinBaseVersion))
testImplementation("junit:junit:$junitVersion")
}

Expand Down
1 change: 0 additions & 1 deletion gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ dependencies {
implementation(project(":common-deps"))
testImplementation(gradleApi())
testImplementation(project(":api"))
testImplementation(project(":common-util"))
testImplementation("junit:junit:$junitVersion")
testImplementation("com.google.truth:truth:$googleTruthVersion")
testImplementation(gradleTestKit())
Expand Down
1 change: 0 additions & 1 deletion integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ dependencies {
testImplementation(gradleTestKit())
testImplementation("org.jetbrains.kotlin:kotlin-compiler:$kotlinBaseVersion")
testImplementation(project(":api"))
testImplementation(project(":common-util"))
testImplementation(project(":gradle-plugin"))
testImplementation(project(":symbol-processing"))
testImplementation(project(":symbol-processing-cmdline"))
Expand Down

0 comments on commit cdc6517

Please sign in to comment.