File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ RUN apt-get update && apt-get install -y curl wget zip
4
4
5
5
RUN ARCH=$(dpkg --print-architecture) && \
6
6
if [ "$ARCH" = "amd64" ]; then \
7
- wget -O jre.zip https://builds.openlogic.com/downloadJDK/openlogic-openjdk/21.0.8+9/openlogic-openjdk-21.0.8+9-linux-x64.tar.gz ; \
7
+ wget -O jre.zip https://builds.openlogic.com/downloadJDK/openlogic-openjdk/21.0.8+9/openlogic-openjdk-21.0.8+9-linux-x64.zip ; \
8
8
elif [ "$ARCH" = "arm64" ]; then \
9
9
wget -O jre.zip https://builds.openlogic.com/downloadJDK/openlogic-openjdk/21.0.8+9/openlogic-openjdk-21.0.8+9-mac-x64.zip; \
10
10
else \
11
11
echo "Unsupported architecture: $ARCH" && exit 1; \
12
12
fi
13
13
RUN unzip jre.zip
14
- RUN mv jre- 21.0.7 jre || mv jre- 21.0.7-linux-aarch/jre -21.0.7 jre
14
+ RUN mv jdk-openlogic-openjdk- 21.0.8+9-linux-x64 jre || mv openlogic-openjdk- 21.0.8+9-mac-x64/jdk -21.0.8.jdk jre
15
15
ADD ./cli ./cli
16
16
ADD ./core ./core
17
17
ADD ./plugin-interface ./plugin-interface
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ plugins {
2
2
id ' java-library'
3
3
}
4
4
5
- version = " 9.1 .0"
5
+ version = " 9.2 .0"
6
6
7
7
repositories {
8
8
mavenCentral()
You can’t perform that action at this time.
0 commit comments