File tree Expand file tree Collapse file tree 22 files changed +50
-50
lines changed
android-interop-testing/app
core/src/main/java/io/grpc/internal Expand file tree Collapse file tree 22 files changed +50
-50
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ protobuf {
4242 protoc { artifact = ' com.google.protobuf:protoc:3.9.0' }
4343 plugins {
4444 javalite { artifact = " com.google.protobuf:protoc-gen-javalite:3.0.0" }
45- grpc { artifact = ' io.grpc:protoc-gen-grpc-java:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
45+ grpc { artifact = ' io.grpc:protoc-gen-grpc-java:1.24.1' // CURRENT_GRPC_VERSION
4646 }
4747 }
4848 generateProtoTasks {
@@ -71,11 +71,11 @@ dependencies {
7171 implementation ' junit:junit:4.12'
7272
7373 // You need to build grpc-java to obtain the grpc libraries below.
74- implementation ' io.grpc:grpc-auth:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
75- implementation ' io.grpc:grpc-okhttp:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
76- implementation ' io.grpc:grpc-protobuf-lite:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
77- implementation ' io.grpc:grpc-stub:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
78- implementation ' io.grpc:grpc-testing:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
74+ implementation ' io.grpc:grpc-auth:1.24.1' // CURRENT_GRPC_VERSION
75+ implementation ' io.grpc:grpc-okhttp:1.24.1' // CURRENT_GRPC_VERSION
76+ implementation ' io.grpc:grpc-protobuf-lite:1.24.1' // CURRENT_GRPC_VERSION
77+ implementation ' io.grpc:grpc-stub:1.24.1' // CURRENT_GRPC_VERSION
78+ implementation ' io.grpc:grpc-testing:1.24.1' // CURRENT_GRPC_VERSION
7979
8080 // workaround for https://github.com/google/protobuf/issues/1889
8181 protobuf ' com.google.protobuf:protobuf-java:3.0.2'
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22
33group = " io.grpc"
4- version = " 1.24.1-SNAPSHOT " // CURRENT_GRPC_VERSION
4+ version = " 1.24.1" // CURRENT_GRPC_VERSION
55description = ' gRPC: Android'
66
77buildscript {
@@ -47,9 +47,9 @@ dependencies {
4747 errorprone ' com.google.errorprone:error_prone_core:2.3.3'
4848 errorproneJavac ' com.google.errorprone:javac:9+181-r4173-1'
4949
50- implementation ' io.grpc:grpc-core:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
50+ implementation ' io.grpc:grpc-core:1.24.1' // CURRENT_GRPC_VERSION
5151
52- testImplementation ' io.grpc:grpc-okhttp:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
52+ testImplementation ' io.grpc:grpc-okhttp:1.24.1' // CURRENT_GRPC_VERSION
5353 testImplementation ' junit:junit:4.12'
5454 testImplementation ' org.robolectric:robolectric:3.7.1'
5555 testImplementation ' com.google.truth:truth:0.45'
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ subprojects {
4848 }
4949
5050 group = " io.grpc"
51- version = " 1.24.1-SNAPSHOT " // CURRENT_GRPC_VERSION
51+ version = " 1.24.1" // CURRENT_GRPC_VERSION
5252
5353 sourceCompatibility = 1.7
5454 targetCompatibility = 1.7
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
2121 * </pre>
2222 */
2323@javax.annotation.Generated(
24- value = "by gRPC proto compiler (version 1.24.1-SNAPSHOT )",
24+ value = "by gRPC proto compiler (version 1.24.1)",
2525 comments = "Source: grpc/testing/compiler/test.proto")
2626@java.lang.Deprecated
2727public final class TestDeprecatedServiceGrpc {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
2121 * </pre>
2222 */
2323@javax.annotation.Generated(
24- value = "by gRPC proto compiler (version 1.24.1-SNAPSHOT )",
24+ value = "by gRPC proto compiler (version 1.24.1)",
2525 comments = "Source: grpc/testing/compiler/test.proto")
2626public final class TestServiceGrpc {
2727
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
2121 * </pre>
2222 */
2323@javax.annotation.Generated(
24- value = "by gRPC proto compiler (version 1.24.1-SNAPSHOT )",
24+ value = "by gRPC proto compiler (version 1.24.1)",
2525 comments = "Source: grpc/testing/compiler/test.proto")
2626@java.lang.Deprecated
2727public final class TestDeprecatedServiceGrpc {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
2121 * </pre>
2222 */
2323@javax.annotation.Generated(
24- value = "by gRPC proto compiler (version 1.24.1-SNAPSHOT )",
24+ value = "by gRPC proto compiler (version 1.24.1)",
2525 comments = "Source: grpc/testing/compiler/test.proto")
2626public final class TestServiceGrpc {
2727
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ public byte[] parseAsciiString(byte[] serialized) {
195195
196196 public static final Splitter ACCEPT_ENCODING_SPLITTER = Splitter .on (',' ).trimResults ();
197197
198- private static final String IMPLEMENTATION_VERSION = "1.24.1-SNAPSHOT " ; // CURRENT_GRPC_VERSION
198+ private static final String IMPLEMENTATION_VERSION = "1.24.1" ; // CURRENT_GRPC_VERSION
199199
200200 /**
201201 * The default timeout in nanos for a keepalive ping request.
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22
33group = " io.grpc"
4- version = " 1.24.1-SNAPSHOT " // CURRENT_GRPC_VERSION
4+ version = " 1.24.1" // CURRENT_GRPC_VERSION
55description = " gRPC: Cronet Android"
66
77buildscript {
@@ -54,8 +54,8 @@ dependencies {
5454 errorprone ' com.google.errorprone:error_prone_core:2.3.3'
5555 errorproneJavac ' com.google.errorprone:javac:9+181-r4173-1'
5656
57- implementation ' io.grpc:grpc-core:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
58- testImplementation ' io.grpc:grpc-testing:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
57+ implementation ' io.grpc:grpc-core:1.24.1' // CURRENT_GRPC_VERSION
58+ testImplementation ' io.grpc:grpc-testing:1.24.1' // CURRENT_GRPC_VERSION
5959
6060 implementation ' org.chromium.net:cronet-api:76.3809.111'
6161 testImplementation ' org.chromium.net:cronet-embedded:66.3359.158'
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ protobuf {
3131 protoc { artifact = ' com.google.protobuf:protoc:3.4.0' }
3232 plugins {
3333 javalite { artifact = " com.google.protobuf:protoc-gen-javalite:3.0.0" }
34- grpc { artifact = ' io.grpc:protoc-gen-grpc-java:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
34+ grpc { artifact = ' io.grpc:protoc-gen-grpc-java:1.24.1' // CURRENT_GRPC_VERSION
3535 }
3636 }
3737 generateProtoTasks {
@@ -49,12 +49,12 @@ dependencies {
4949 implementation ' com.android.support:appcompat-v7:27.0.2'
5050
5151 // You need to build grpc-java to obtain these libraries below.
52- implementation ' io.grpc:grpc-okhttp:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
53- implementation ' io.grpc:grpc-protobuf-lite:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
54- implementation ' io.grpc:grpc-stub:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
52+ implementation ' io.grpc:grpc-okhttp:1.24.1' // CURRENT_GRPC_VERSION
53+ implementation ' io.grpc:grpc-protobuf-lite:1.24.1' // CURRENT_GRPC_VERSION
54+ implementation ' io.grpc:grpc-stub:1.24.1' // CURRENT_GRPC_VERSION
5555 implementation ' javax.annotation:javax.annotation-api:1.2'
5656
5757 testImplementation ' junit:junit:4.12'
5858 testImplementation ' com.google.truth:truth:0.45'
59- testImplementation ' io.grpc:grpc-testing:1.24.1-SNAPSHOT ' // CURRENT_GRPC_VERSION
59+ testImplementation ' io.grpc:grpc-testing:1.24.1' // CURRENT_GRPC_VERSION
6060}
You can’t perform that action at this time.
0 commit comments