Skip to content
Merged

Deps #1462

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ private void openChannel() {
this.channel = ManagedChannelBuilder.forTarget(target)
// Channels are secure by default (via SSL/TLS). For now, we disable TLS to avoid needing certificates.
.usePlaintext() //
.enableFullStreamDecompression() //
.maxInboundMessageSize(MAX_MESSAGE) //
.build();

Expand Down
4 changes: 3 additions & 1 deletion gradle/any/protobuf.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ protobuf {
// considering deprecating their plugin and upstreaming it to JetBrains. Might not be a good bet to start relying on
// the idea plugin at this point.
// https://github.com/gradle/gradle/issues/1366#issuecomment-546928184
sourceSets.main.java.srcDirs += ['build/generated/source/proto/main/java']
sourceSets.main.java.srcDirs += ['build/generated/sources/proto/main/java',
'build/generated/sources/proto/main/grpc']

jacocoTestReport {
afterEvaluate {
Expand All @@ -27,4 +28,5 @@ jacocoTestReport {
}
}

compileJava.dependsOn 'generateProto'
sourceJar.dependsOn 'generateProto'
6 changes: 3 additions & 3 deletions gradle/any/shared-mvn-coords.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
buildPlugins.shadow = 'com.gradleup.shadow:com.gradleup.shadow.gradle.plugin:8.3.5'
buildPlugins.sonarqube = 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.0'
buildPlugins.spotless = 'com.diffplug.spotless:spotless-plugin-gradle:5.17.1'
buildPlugins.protobuf = 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
buildPlugins.protobuf = 'com.google.protobuf:protobuf-gradle-plugin:0.9.5'
buildPlugins.depcheck = 'org.owasp:dependency-check-gradle:8.2.1'

// slf4j version is declared in a place where we cannot use the tds-platform project to handle resolving versions
Expand All @@ -19,6 +19,6 @@ ext {
// coords.
depVersion = [:]
depVersion.slf4j = '2.0.17'
depVersion.protobuf = '3.25.5'
depVersion.grpc = '1.60.0'
depVersion.protobuf = '4.31.1'
depVersion.grpc = '1.73.0'
}