This is an automated email from the ASF dual-hosted git repository. jamesbognar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/juneau.git
commit bc558351c594b0e6523229263fce8fda74675d99 Author: James Bognar <[email protected]> AuthorDate: Sun Mar 8 16:46:23 2026 -0400 Hjson support: release notes, fixes, and documentation --- juneau-examples/juneau-examples-rest-jetty-ftest/pom.xml | 6 ++++++ .../java/org/apache/juneau/examples/rest/ContentComboTestBase.java | 1 + 2 files changed, 7 insertions(+) diff --git a/juneau-examples/juneau-examples-rest-jetty-ftest/pom.xml b/juneau-examples/juneau-examples-rest-jetty-ftest/pom.xml index 290eb50053..afb740c8d6 100644 --- a/juneau-examples/juneau-examples-rest-jetty-ftest/pom.xml +++ b/juneau-examples/juneau-examples-rest-jetty-ftest/pom.xml @@ -45,6 +45,12 @@ <artifactId>juneau-rest-server</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter</artifactId> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> diff --git a/juneau-examples/juneau-examples-rest-jetty-ftest/src/test/java/org/apache/juneau/examples/rest/ContentComboTestBase.java b/juneau-examples/juneau-examples-rest-jetty-ftest/src/test/java/org/apache/juneau/examples/rest/ContentComboTestBase.java index e08d2ae199..927469470d 100644 --- a/juneau-examples/juneau-examples-rest-jetty-ftest/src/test/java/org/apache/juneau/examples/rest/ContentComboTestBase.java +++ b/juneau-examples/juneau-examples-rest-jetty-ftest/src/test/java/org/apache/juneau/examples/rest/ContentComboTestBase.java @@ -40,6 +40,7 @@ import org.apache.juneau.xml.*; import org.junit.*; @FixMethodOrder(NAME_ASCENDING) +@Ignore("Base class for parameterized tests - not meant to be run directly") @SuppressWarnings({ "java:S3577" // Class name ends with "TestBase" to indicate it's a base class, not a test class itself })
