Skip to content

Commit

Permalink
fix: fix not compiling due to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
duruer committed Feb 23, 2024
1 parent ca1458c commit aad6b97
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.internal.KaptTask

plugins {
kotlin("jvm") version "1.9.20"
kotlin("kapt") version "1.9.20"
Expand Down Expand Up @@ -90,6 +92,13 @@ tasks {
}
}

tasks.withType<KaptTask> {
if (bootstrap) {
mustRunAfter(":plugins:parsek-plugin-database:shadowJar")
mustRunAfter(":plugins:parsek-plugin-token:shadowJar")
}
}

publishing {
repositories {
maven {
Expand Down

0 comments on commit aad6b97

Please sign in to comment.