Skip to content

Commit

Permalink
Upgrade to Gradle 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Feb 22, 2024
1 parent e25577d commit 412222a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
11 changes: 6 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
// release
id("net.researchgate.release") version "3.0.2"
id("com.bakdata.sonar") version "1.1.14"
id("com.bakdata.sonar") version "1.1.17"
id("com.bakdata.sonatype") version "1.1.14"
id("org.hildan.github.changelog") version "1.12.1"
id("org.hildan.github.changelog") version "2.2.0"
}

allprojects {
Expand Down Expand Up @@ -40,9 +40,10 @@ configure<org.hildan.github.changelog.plugin.GitHubChangelogExtension> {
subprojects {
apply(plugin = "java-library")

configure<JavaPluginConvention> {
sourceCompatibility = org.gradle.api.JavaVersion.VERSION_11
targetCompatibility = org.gradle.api.JavaVersion.VERSION_11
configure<JavaPluginExtension> {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}

dependencies {
Expand Down
4 changes: 0 additions & 4 deletions generic-avro-reflect/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
plugins {
`java-library`
}

description = "Generates an Avro schema from any Java object at runtime"

dependencies {
Expand Down
4 changes: 0 additions & 4 deletions kafka-streams-reflect-avro-serde/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
plugins {
`java-library`
}

description = "Provides an Avro Serde that can (de)serialize (almost) arbitrary Java objects in Kafka Streams."

repositories {
Expand Down

0 comments on commit 412222a

Please sign in to comment.