File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM openjdk:8 -slim as builder
15
+ FROM openjdk:18 -slim as builder
16
16
17
17
WORKDIR /app
18
18
@@ -25,7 +25,7 @@ COPY . .
25
25
RUN chmod +x gradlew
26
26
RUN ./gradlew installDist
27
27
28
- FROM openjdk:8 -slim
28
+ FROM openjdk:18 -slim
29
29
30
30
# Download Stackdriver Profiler Java agent
31
31
RUN apt-get -y update && apt-get install -qqy \
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ def jacksonVersion = "2.13.3"
20
20
def protocVersion = " 3.21.5"
21
21
22
22
tasks. withType(JavaCompile ) {
23
- sourceCompatibility = JavaVersion . VERSION_1_8
24
- targetCompatibility = JavaVersion . VERSION_1_8
23
+ sourceCompatibility = JavaVersion . VERSION_18
24
+ targetCompatibility = JavaVersion . VERSION_18
25
25
}
26
26
27
27
ext {
@@ -93,9 +93,9 @@ startScripts.enabled = false
93
93
// This to cache dependencies during Docker image building. First build will take time.
94
94
// Subsequent build will be incremental.
95
95
task downloadRepos (type : Copy ) {
96
- from configurations. compile
96
+ from configurations. compileClasspath
97
97
into offlineCompile
98
- from configurations. runtime
98
+ from configurations. compileClasspath
99
99
into offlineCompile
100
100
}
101
101
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.9.2 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.5.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments