Skip to content
This repository was archived by the owner on Sep 22, 2022. It is now read-only.

Commit ffa1458

Browse files
committed
release 1.3.5:
- up jdk version - up grpc version - up springboot version
1 parent 6a772ef commit ffa1458

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gradle:7.0.0-jdk11 as cache
1+
FROM gradle:7.3.3-jdk17 as cache
22
RUN mkdir -p /home/gradle/cache_home
33
RUN mkdir -p /proto
44
RUN touch /proto/any.proto
@@ -8,7 +8,7 @@ COPY gradle.properties /home/gradle/java-code/
88
WORKDIR /home/gradle/java-code
99
RUN gradle build -i --no-daemon || return 0
1010

11-
FROM gradle:7.0.0-jdk11 as runner
11+
FROM gradle:7.3.3-jdk17 as runner
1212
COPY --from=cache /home/gradle/cache_home /home/gradle/.gradle
1313
COPY . /usr/src/java-code/
1414
WORKDIR /usr/src/java-code

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.5.6'
2+
id 'org.springframework.boot' version '2.6.2'
33
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
44
id 'java'
55
id 'com.google.protobuf' version '0.8.16'
66
}
77

88
group = 'io.adven.grpc.wiremock'
99
version = '0.0.1-SNAPSHOT'
10-
sourceCompatibility = '11'
10+
sourceCompatibility = '17'
1111

1212
repositories {
1313
mavenCentral()
1414
}
1515

16-
def grpcVersion = '1.42.1'
16+
def grpcVersion = '1.43.2'
1717
def wiremockVersion = '2.32.0'
1818
def protobufVersion = '3.16.0'
1919
def protocVersion = protobufVersion

0 commit comments

Comments
 (0)