Skip to content

Commit

Permalink
Locks Java to 11 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
adriancole authored Aug 18, 2020
1 parent ccbe57e commit 6b91f68
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,11 @@ subprojects {
license.set(org.hypertrace.gradle.publishing.License.TRACEABLE_COMMUNITY)
}
}

pluginManager.withPlugin("java") {
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}
}
2 changes: 1 addition & 1 deletion hypertrace-trace-enricher/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

repositories {
// Need this to fetch confluent's kafka-avro-serializer dependency
// Needed for io.confluent:kafka-avro-serializer
maven("http://packages.confluent.io/maven")
}

Expand Down

0 comments on commit 6b91f68

Please sign in to comment.