From 809b487c1bda00c5be066223f609f7e514e3fff8 Mon Sep 17 00:00:00 2001 From: Rob Vesse Date: Wed, 8 Jan 2025 10:25:47 +0000 Subject: [PATCH] Make dependency:analyze failOnWarning configurable This allows for downstream consumers of this library, which may be projects in the prototype stage, to turn off this strict dependency analyze until they are ready to opt into it --- CHANGELOG.md | 9 +++++++++ pom.xml | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4b46a5..91cf357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,17 @@ # Change Log +# 0.26.0 + +- Build improvements: + - Revert upgrade to JAX-RS 4.0 as was causing cryptic build/runtime compatibility issues on some downstream projects + - New `analyze.failOnWarnings` property can be overridden in modules/projects to skip `dependency:analyze-only` goal + if the module/project is not yet ready for stricter dependency analysis. + # 0.25.2 + - Build improvements - Minor dependency cleanup + # 0.25.1 - JAX-RS Base Server improvements: diff --git a/pom.xml b/pom.xml index 198f5de..3f8de84 100644 --- a/pom.xml +++ b/pom.xml @@ -84,6 +84,9 @@ true + + true +