Skip to content

Commit

Permalink
Update files
Browse files Browse the repository at this point in the history
  • Loading branch information
raminqaf committed Dec 12, 2024
1 parent d369c29 commit b3de768
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions word-count/code/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ description = "Word count pipeline with Kafka Streams"
plugins {
java
idea
id("net.researchgate.release") version "3.0.2"
id("com.bakdata.sonar") version "1.1.16"
id("com.bakdata.sonatype") version "1.1.14"
id("org.hildan.github.changelog") version "2.2.0"
id("io.freefair.lombok") version "8.11"
id("com.google.cloud.tools.jib") version "3.4.4"
}
Expand All @@ -20,6 +24,23 @@ java {
}
}

configure<com.bakdata.gradle.SonatypeSettings> {
developers {
developer {
name.set("Ramin Gharib")
id.set("raminqaf")
}
}
}

configure<org.hildan.github.changelog.plugin.GitHubChangelogExtension> {
githubUser = "bakdata"
githubRepository = "kpops-examples"
futureVersionTag = findProperty("changelog.releaseVersion")?.toString()
sinceTag = findProperty("changelog.sinceTag")?.toString()
}


tasks {
compileJava {
options.encoding = "UTF-8"
Expand Down

0 comments on commit b3de768

Please sign in to comment.