Skip to content

Commit

Permalink
Fix missing kassava dependency in plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jul 19, 2024
1 parent 84565da commit aaae83c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,22 @@ plugins {
// release
id("com.bakdata.release") version "1.4.0"
id("com.bakdata.sonar") version "1.4.0"
id("com.bakdata.sonatype") version "1.4.0"
id("io.freefair.lombok") version "8.4" apply false
}

buildscript {
repositories {
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
}
}
dependencies {
classpath("com.bakdata.gradle:sonatype:1.4.1-SNAPSHOT")
}
}

apply(plugin = "com.bakdata.sonatype")

allprojects {
group = "com.bakdata.${rootProject.name}"

Expand Down

0 comments on commit aaae83c

Please sign in to comment.