Skip to content

Commit

Permalink
closes #317, closes #318
Browse files Browse the repository at this point in the history
  • Loading branch information
jvmlet committed Oct 16, 2022
1 parent 4f2ea87 commit 71056c3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 22 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
grpcVersion=1.49.0
springBootVersion=2.7.3
grpcVersion=1.50.0
springBootVersion=2.7.4
springCloudVersion=2021.0.3
gradleErrorPronePluginVersion=2.0.2
errorProneVersion=2.7.1
Expand Down
2 changes: 1 addition & 1 deletion grpc-spring-boot-starter-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pluginBundle {
tags = ['grpc', 'protobuf', 'spring-boot', 'grpc-spring-boot-starter']
}
dependencies {
runtime "com.google.protobuf:protobuf-gradle-plugin:0.8.18"
runtime "com.google.protobuf:protobuf-gradle-plugin:0.9.1"
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public GrpcSpringBootExtension(Project project) {


protocVersion = this.project.getObjects().property(String.class);
protocVersion.set("3.19.2");
protocVersion.set("3.21.7");


}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,6 @@ configurations.all {
}


sourceSets.configureEach{s->
java {
srcDir project.buildDir.toPath()
.resolve("protoGen")
.resolve(s.name)
.resolve("java")
.toFile()

srcDir project.buildDir.toPath()
.resolve("protoGen")
.resolve(s.name)
.resolve("grpc")
.toFile()
}
}



protobuf {
protoc {
if(DefaultNativePlatform.getCurrentOperatingSystem().isMacOsX()){
Expand Down

0 comments on commit 71056c3

Please sign in to comment.