Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
igr committed Mar 6, 2021
1 parent 39c45dc commit 4a2d973
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)
Expand All @@ -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.
Expand Down
6 changes: 4 additions & 2 deletions jodd-joy/src/test/java/jodd/joy/JoySuiteJettyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
}
}
Expand All @@ -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;
Expand Down

0 comments on commit 4a2d973

Please sign in to comment.