File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,11 @@ plugins {
66}
77
88project. ext. set(' grpcVersion' , ' 1.54.2' )
9- project. ext. set(' protobufVersion' , ' 3.12.0' )
10- project. ext. set(' protocVersion' , project. protobufVersion)
9+ project. ext. set(' protobufVersion' , ' 3.25.5' )
10+ // protoc compiler stays at 3.12.0 because the extension subproject uses
11+ // the built-in --js_out, which was removed in protoc 3.21+.
12+ // The runtime library is forced to 3.25.5 via resolutionStrategy below.
13+ project. ext. set(' protocVersion' , ' 3.12.0' )
1114project. ext. set(' toolingAPIVersion' , ' 9.2.0' )
1215
1316allprojects {
@@ -30,6 +33,12 @@ subprojects {
3033 }
3134 }
3235
36+ configurations. all {
37+ resolutionStrategy {
38+ force " com.google.protobuf:protobuf-java:${ protobufVersion} "
39+ }
40+ }
41+
3342 protobuf {
3443 protoc {
3544 if (osdetector. os == ' osx' ) {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ application {
2323dependencies {
2424 implementation " org.eclipse.lsp4j:org.eclipse.lsp4j:0.24.0"
2525 implementation " org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:0.24.0"
26- implementation " com.google.guava:guava:32.1.3 -jre"
26+ implementation " com.google.guava:guava:33.4.0 -jre"
2727 implementation " org.codehaus.groovy:groovy-eclipse-batch:4.0.16-03"
2828 implementation " com.google.code.gson:gson:2.9.1"
2929 implementation " org.apache.bcel:bcel:6.6.1"
You can’t perform that action at this time.
0 commit comments