Compare commits

...

11 Commits

Author SHA1 Message Date
8d91e7d5a3 Merge pull request 'Update dependency commons-cli:commons-cli to v1.7.0' (#45) from renovate/commons-cli-commons-cli-1.x into master
Reviewed-on: #45
2024-04-23 11:58:23 +00:00
c0671acf60 Merge pull request 'Update dependency org.xerial:sqlite-jdbc to v3.45.3.0' (#44) from renovate/org.xerial-sqlite-jdbc-3.x into master
Reviewed-on: #44
2024-04-23 11:58:14 +00:00
0b8300c774 Merge pull request 'Update dependency org.slf4j:slf4j-simple to v2.0.13' (#43) from renovate/slf4j-monorepo into master
Reviewed-on: #43
2024-04-23 11:58:05 +00:00
cac55d5f06 Merge pull request 'Update dependency commons-io:commons-io to v2.16.1' (#42) from renovate/commons-io-commons-io-2.x into master
Reviewed-on: #42
2024-04-23 11:57:55 +00:00
aa3aadbb53 Merge pull request 'Update dependency com.kohlschutter.junixsocket:junixsocket-core to v2.9.1' (#41) from renovate/com.kohlschutter.junixsocket-junixsocket-core-2.x into master
Reviewed-on: #41
2024-04-23 11:57:45 +00:00
bb84e32719 Update dependency commons-cli:commons-cli to v1.7.0 2024-04-18 02:01:51 +00:00
12aa40b160 Update dependency org.xerial:sqlite-jdbc to v3.45.3.0 2024-04-16 04:01:50 +00:00
9d4fddcb2d Update dependency org.slf4j:slf4j-simple to v2.0.13 2024-04-12 15:01:46 +00:00
4654cff158 Update dependency commons-io:commons-io to v2.16.1 2024-04-08 18:01:40 +00:00
b1888fed96 Update dependency com.kohlschutter.junixsocket:junixsocket-core to v2.9.1 2024-04-05 16:01:34 +00:00
d7e8b3d62a Java 21 2024-04-02 18:02:39 +02:00
2 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
# Use a specific version of OpenJDK based on Debian ("bullseye" in this case) # Use a specific version of OpenJDK based on Debian ("bullseye" in this case)
FROM --platform=$BUILDPLATFORM openjdk:22-ea-21-jdk-slim-bullseye AS builder FROM --platform=$BUILDPLATFORM openjdk:21-jdk-bullseye AS builder
# Replace 'apk' commands with 'apt-get' for Debian-based package management. # Replace 'apk' commands with 'apt-get' for Debian-based package management.
# Install required packages such as 'git' and 'gradle'. Remember to update and clean up properly. # Install required packages such as 'git' and 'gradle'. Remember to update and clean up properly.
@@ -12,7 +12,7 @@ COPY . .
RUN ./gradlew shadowJar RUN ./gradlew shadowJar
# Second stage: Setup the runtime container # Second stage: Setup the runtime container
FROM openjdk:22-ea-21-jdk-slim-bullseye FROM openjdk:21-jdk-bullseye
# Again, switch to 'apt-get' for installing 'bash'. Clean up to keep the image size down. # Again, switch to 'apt-get' for installing 'bash'. Clean up to keep the image size down.
RUN apt-get update && \ RUN apt-get update && \

View File

@@ -90,10 +90,10 @@ repositories {
dependencies { dependencies {
// Logging // Logging
api 'org.slf4j:slf4j-simple:2.0.12' api 'org.slf4j:slf4j-simple:2.0.13'
// Easy file management // Easy file management
api 'commons-io:commons-io:2.16.0' api 'commons-io:commons-io:2.16.1'
// Config management // Config management
api 'org.yaml:snakeyaml:1.33' api 'org.yaml:snakeyaml:1.33'
@@ -132,7 +132,7 @@ dependencies {
api 'com.mchange:c3p0:0.10.0' api 'com.mchange:c3p0:0.10.0'
// SQLite // SQLite
api 'org.xerial:sqlite-jdbc:3.45.2.0' api 'org.xerial:sqlite-jdbc:3.45.3.0'
// PostgreSQL // PostgreSQL
api 'org.postgresql:postgresql:42.7.3' api 'org.postgresql:postgresql:42.7.3'
@@ -141,7 +141,7 @@ dependencies {
api 'org.mariadb.jdbc:mariadb-java-client:3.3.3' api 'org.mariadb.jdbc:mariadb-java-client:3.3.3'
// UNIX sockets // UNIX sockets
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.0' api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.1'
// Twilio SDK for SMS // Twilio SDK for SMS
api 'com.twilio.sdk:twilio:10.1.3' api 'com.twilio.sdk:twilio:10.1.3'
@@ -156,7 +156,7 @@ dependencies {
api 'io.undertow:undertow-core:2.3.12.Final' api 'io.undertow:undertow-core:2.3.12.Final'
// Command parser for AS interface // Command parser for AS interface
api 'commons-cli:commons-cli:1.6.0' api 'commons-cli:commons-cli:1.7.0'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
testImplementation 'com.github.tomakehurst:wiremock:3.0.1' testImplementation 'com.github.tomakehurst:wiremock:3.0.1'