Skip to content

Commit 34870d0

Browse files
authored
update to latest java version (#33)
Signed-off-by: Nick Santos <nick.santos@docker.com>
1 parent 26f0c8d commit 34870d0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1930
-1252
lines changed

.circleci/config.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ jobs:
66

77
steps:
88
- checkout
9-
- setup_remote_docker:
10-
version: 20.10.11
11-
- run: apt update && apt install -y openjdk-11-jdk unzip rsync python
9+
- setup_remote_docker
10+
- run: apt update && apt install -y openjdk-17-jdk unzip rsync python3
1211
- run: ctlptl create cluster kind --registry=ctlptl-registry && test/test.sh

0-base/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:8-jdk-alpine
1+
FROM eclipse-temurin:17-jdk-alpine
22

33
ADD . .
44

0-base/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.2.5.RELEASE'
3-
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
2+
id 'org.springframework.boot' version '3.2.1'
3+
id 'io.spring.dependency-management' version '1.1.4'
44
id 'java'
55
}
66

77
group = 'dev.tilt'
88
version = '0.0.1-SNAPSHOT'
9-
sourceCompatibility = '1.8'
9+
sourceCompatibility = '1.17'
1010

1111
configurations {
1212
developmentOnly
-11.9 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)