2 Commits

Author SHA1 Message Date
fb0267bb13 v2.01-jbr-17.0.12 pom 2025-01-31 15:59:42 -05:00
e80b70a0cb added libfreetype6 (jdk SunFont needs it) 2025-01-31 15:59:39 -05:00
2 changed files with 9 additions and 9 deletions

View File

@@ -11,9 +11,9 @@ ENV ENABLE_HOTSWAP=true
ENV ENABLE_JDWP=true
ENV DISABLE_HOTSWAP_PLUGINS=
# Install curl
# Install curl & essentials
RUN apt update && \
apt -y install curl
apt -y install curl libfreetype6
# Download & Install JBR Java
RUN mkdir -p /usr/local/lib/jvm && \

14
pom.xml
View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.inteligr8</groupId>
<artifactId>jdk-hotswap</artifactId>
<version>1.4.1-jbr-17.0.11</version>
<version>2.0.1-jbr-17.0.12</version>
<name>Java Hotswap Kit for Rapid Application Development</name>
<packaging>pom</packaging>
@@ -11,18 +11,18 @@
<!-- The release version of Ubuntu to use as the base -->
<!-- See: https://hub.docker.com/_/ubuntu -->
<!-- This has very little impact and may be replaced -->
<ubuntu.version>24.04</ubuntu.version>
<ubuntu.version>24.10</ubuntu.version>
<namespace.prefix>${project.artifactId}</namespace.prefix>
<!-- The version of the Hotswap Agent to use -->
<!-- See: https://github.com/HotswapProjects/HotswapAgent/releases -->
<hotswap.version>1.4.1</hotswap.version>
<hotswap.version>2.0.1</hotswap.version>
<!-- The version of the JetBrains JDK -->
<!-- See: https://github.com/JetBrains/JetBrainsRuntime/releases -->
<jbr.version>17.0.11</jbr.version>
<jbr.buildNumber>1207.30</jbr.buildNumber>
<jbr.version>17.0.12</jbr.version>
<jbr.buildNumber>1000.54</jbr.buildNumber>
<jbr.basename>jbr_jcef-${jbr.version}-linux-x64-b${jbr.buildNumber}</jbr.basename>
<jbr.filename>${jbr.basename}.tar.gz</jbr.filename>
@@ -64,7 +64,7 @@
<plugin>
<groupId>org.eclipse.jkube</groupId>
<artifactId>kubernetes-maven-plugin</artifactId>
<version>1.16.2</version>
<version>1.18.0</version>
<configuration>
<images>
<image>
@@ -93,7 +93,7 @@
<!-- This plugin prevents the project from deploying to the Maven Repository, as it is pointless -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<configuration>
<skip>true</skip>
</configuration>