Skip to content

Commit f16de4f

Browse files
committed
Update Vert.x to 5.0.4 and fix JUnit version compatibility
- Upgrade Vert.x from 4.5.11 to 5.0.4 - Update Vert.x badge in README.md to reflect version 5.0.4+ - Revert JUnit from unstable 6.0.0 back to stable 5.11.3 - Fix platform launcher versions to maintain compatibility (6.0.0 → 1.11.3)
1 parent 72b2544 commit f16de4f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
99
[![Java Version](https://img.shields.io/badge/Java-21%2B-blue.svg)](https://openjdk.java.net/projects/jdk/21/)
1010
[![Coverage](https://img.shields.io/badge/Coverage-77.7%25-yellow.svg)]()
11-
[![Vert.x](https://img.shields.io/badge/Vert.x-4.5.11%2B-purple.svg)](https://vertx.io/)
11+
[![Vert.x](https://img.shields.io/badge/Vert.x-5.0.4%2B-purple.svg)](https://vertx.io/)
1212
Inqwise Async bridges standard Java blocking I/O structures with Vert.x's asynchronous, non-blocking APIs. By providing robust wrappers for traditional Java classes such as {@link java.io.InputStream}, {@link java.io.OutputStream}, {@link java.io.Reader}, {@link java.io.Writer}, and more, Inqwise Async enables developers to integrate existing Java codebases into Vert.x-based reactive applications without disrupting the event loop. This bridge ensures efficient and scalable I/O operations by managing back-pressure and flow control, facilitating the modernization of legacy systems for high-performance, event-driven environments.
1313

1414
## Table of Contents

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<maven.version>3.9.8</maven.version>
4848
<java.version>21</java.version>
4949
<maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version>
50-
<junit5.version>6.0.0</junit5.version>
50+
<junit5.version>5.11.3</junit5.version>
5151
<maven-flatten-plugin.version>1.6.0</maven-flatten-plugin.version>
5252
<maven.gpg.plugin.version>3.2.8</maven.gpg.plugin.version>
5353
<maven.javadoc.plugin.version>3.12.0</maven.javadoc.plugin.version>
@@ -102,7 +102,7 @@
102102
<dependency>
103103
<groupId>org.junit.platform</groupId>
104104
<artifactId>junit-platform-launcher</artifactId>
105-
<version>6.0.0</version>
105+
<version>1.11.3</version>
106106
<scope>test</scope>
107107
</dependency>
108108
</dependencies>
@@ -127,7 +127,7 @@
127127
<dependency>
128128
<groupId>org.junit.platform</groupId>
129129
<artifactId>junit-platform-launcher</artifactId>
130-
<version>6.0.0</version>
130+
<version>1.11.3</version>
131131
</dependency>
132132
<dependency>
133133
<groupId>org.apache.logging.log4j</groupId>

0 commit comments

Comments
 (0)