This repository was archived by the owner on Sep 22, 2022. It is now read-only.
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM gradle:7.0.0-jdk11 as cache
1
+ FROM gradle:7.3.3-jdk17 as cache
2
2
RUN mkdir -p /home/gradle/cache_home
3
3
RUN mkdir -p /proto
4
4
RUN touch /proto/any.proto
@@ -8,7 +8,7 @@ COPY gradle.properties /home/gradle/java-code/
8
8
WORKDIR /home/gradle/java-code
9
9
RUN gradle build -i --no-daemon || return 0
10
10
11
- FROM gradle:7.0.0-jdk11 as runner
11
+ FROM gradle:7.3.3-jdk17 as runner
12
12
COPY --from=cache /home/gradle/cache_home /home/gradle/.gradle
13
13
COPY . /usr/src/java-code/
14
14
WORKDIR /usr/src/java-code
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' org.springframework.boot' version ' 2.5.6 '
2
+ id ' org.springframework.boot' version ' 2.6.2 '
3
3
id ' io.spring.dependency-management' version ' 1.0.11.RELEASE'
4
4
id ' java'
5
5
id ' com.google.protobuf' version ' 0.8.16'
6
6
}
7
7
8
8
group = ' io.adven.grpc.wiremock'
9
9
version = ' 0.0.1-SNAPSHOT'
10
- sourceCompatibility = ' 11 '
10
+ sourceCompatibility = ' 17 '
11
11
12
12
repositories {
13
13
mavenCentral()
14
14
}
15
15
16
- def grpcVersion = ' 1.42.1 '
16
+ def grpcVersion = ' 1.43.2 '
17
17
def wiremockVersion = ' 2.32.0'
18
18
def protobufVersion = ' 3.16.0'
19
19
def protocVersion = protobufVersion
You can’t perform that action at this time.
0 commit comments