Skip to content

Commit 71056c3

Browse files
committed
closes #317, closes #318
1 parent 4f2ea87 commit 71056c3

File tree

4 files changed

+4
-22
lines changed

4 files changed

+4
-22
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
grpcVersion=1.49.0
2-
springBootVersion=2.7.3
1+
grpcVersion=1.50.0
2+
springBootVersion=2.7.4
33
springCloudVersion=2021.0.3
44
gradleErrorPronePluginVersion=2.0.2
55
errorProneVersion=2.7.1

grpc-spring-boot-starter-gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pluginBundle {
5555
tags = ['grpc', 'protobuf', 'spring-boot', 'grpc-spring-boot-starter']
5656
}
5757
dependencies {
58-
runtime "com.google.protobuf:protobuf-gradle-plugin:0.8.18"
58+
runtime "com.google.protobuf:protobuf-gradle-plugin:0.9.1"
5959
}
6060

6161

grpc-spring-boot-starter-gradle-plugin/src/main/java/org/lognet/springboot/grpc/gradle/GrpcSpringBootExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public GrpcSpringBootExtension(Project project) {
1919

2020

2121
protocVersion = this.project.getObjects().property(String.class);
22-
protocVersion.set("3.19.2");
22+
protocVersion.set("3.21.7");
2323

2424

2525
}

grpc-spring-boot-starter-gradle-plugin/src/main/resources/grpc-spring-boot.gradle

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,6 @@ configurations.all {
2020
}
2121

2222

23-
sourceSets.configureEach{s->
24-
java {
25-
srcDir project.buildDir.toPath()
26-
.resolve("protoGen")
27-
.resolve(s.name)
28-
.resolve("java")
29-
.toFile()
30-
31-
srcDir project.buildDir.toPath()
32-
.resolve("protoGen")
33-
.resolve(s.name)
34-
.resolve("grpc")
35-
.toFile()
36-
}
37-
}
38-
39-
40-
4123
protobuf {
4224
protoc {
4325
if(DefaultNativePlatform.getCurrentOperatingSystem().isMacOsX()){

0 commit comments

Comments
 (0)