From 35fbd434fc570527d53d1550b5f1c9193a2a3a0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 18:44:03 +0000 Subject: [PATCH 1/3] Bump the dependencies group across 1 directory with 2 updates Bumps the dependencies group with 2 updates in the / directory: io.avaje:avaje-nima-parent and io.avaje:avaje-provides-maven-plugin. Updates `io.avaje:avaje-nima-parent` from 1.1 to 1.2 Updates `io.avaje:avaje-provides-maven-plugin` from 1.1 to 2.1 --- updated-dependencies: - dependency-name: io.avaje:avaje-nima-parent dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: io.avaje:avaje-provides-maven-plugin dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 76517e9..929803f 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ io.avaje avaje-nima-parent - 1.1 + 1.2 @@ -42,7 +42,7 @@ io.avaje avaje-provides-maven-plugin - 1.1 + 2.1 org.jacoco From f363b2ed5a2317b728ee549f548c5835e77c7e7a Mon Sep 17 00:00:00 2001 From: Josiah Noel <32279667+SentryMan@users.noreply.github.com> Date: Mon, 24 Mar 2025 16:06:32 -0400 Subject: [PATCH 2/3] jdk 24 --- .github/workflows/build.yml | 2 +- .github/workflows/jdk-ea.yml | 2 +- pom.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 74ae85f..d2acb5f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - java_version: [23] + java_version: [24] os: [ubuntu-latest] steps: diff --git a/.github/workflows/jdk-ea.yml b/.github/workflows/jdk-ea.yml index 4370132..6491de8 100644 --- a/.github/workflows/jdk-ea.yml +++ b/.github/workflows/jdk-ea.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - java_version: [EA] + java_version: [GA, EA] os: [ubuntu-latest] steps: diff --git a/pom.xml b/pom.xml index 929803f..285cf4c 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ - 23 + 24 nima.example From 02c4094b44c65d5dc49cabbaf9f8328b8a464943 Mon Sep 17 00:00:00 2001 From: Josiah Noel <32279667+SentryMan@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:13:11 -0400 Subject: [PATCH 3/3] Update module-info.java --- src/main/java/module-info.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index 52f9387..3c919dc 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -7,4 +7,5 @@ requires io.avaje.validation.contraints; requires io.avaje.validation.http; requires io.avaje.logback.encoder; + requires org.slf4j; }