diff --git a/README.md b/README.md index fdb7b364e..4c3e61729 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,6 @@ [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-jodd-4183C4.svg)](https://stackoverflow.com/questions/tagged/jodd) [![BSD License](https://img.shields.io/badge/license-BSD--2--Clause-blue.svg)](https://jodd.org/license.html) - -> Produce lightweight code and focus on unleashing your full potential. Jodd is a set of developer-friendly and open-source Java micro-frameworks. It's designed to make things simple, but not simpler. - ## 👋 Hello! Welcome to the **Jodd** - a unique, alternative world of Java :) You can find here some micro-frameworks and some handy tools. Nothing more, nothing less. @@ -20,10 +17,9 @@ Welcome to the **Jodd** - a unique, alternative world of Java :) You can find he Check the official web-site: https://jodd.org +## ‼️ THIS IS THE OLD REPO. USE NEW JODD REPOS FOR v6+ ‼️ -## ‼️ The Future and Jodd Versions ‼️ - -Version **v6** is the maintained version, working on Java 8 and 11. the following components are promoted to v6: +**Jodd v6** is the maintained version, working on Java 8 and 11. The following components are promoted to v6: + [jodd-util](https://github.com/oblac/jodd-util) ⭐ + [jodd-mail](https://github.com/oblac/jodd-mail) ⭐ @@ -41,6 +37,8 @@ Version **v5** contains remaining libraries and frameworks. They are in maintena Sorry, I can only do so much. +--- + ## :zap: Jodd **Jodd** is set of micro-frameworks and developer-friendly tools and utilities. diff --git a/jodd-joy/src/test/java/jodd/joy/JoySuiteJettyTest.java b/jodd-joy/src/test/java/jodd/joy/JoySuiteJettyTest.java index f6ab8b10d..0a27b8070 100644 --- a/jodd-joy/src/test/java/jodd/joy/JoySuiteJettyTest.java +++ b/jodd-joy/src/test/java/jodd/joy/JoySuiteJettyTest.java @@ -29,7 +29,9 @@ import jodd.joy.servers.JettyTestServer; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; +@Disabled public class JoySuiteJettyTest extends JoyTestBase { public static boolean isRunning; @@ -67,7 +69,7 @@ public static void startJetty() { try { server.start(); System.out.println("Jetty test server started"); - } catch (Exception e) { + } catch (final Exception e) { throw new UncheckedException(e); } } @@ -81,7 +83,7 @@ public static void stopJetty() { } try { server.stop(); - } catch (Exception ignore) { + } catch (final Exception ignore) { } finally { System.out.println("Jetty test server stopped"); server = null;