diff --git a/README.md b/README.md
index 6ef9878f702..4de723c6525 100644
--- a/README.md
+++ b/README.md
@@ -32,17 +32,18 @@ Tests can be run with specified HTTP port and/or HTTPS port.
Vert.x supports native transport on BSD and Linux, to run the tests with native transport
```
-> mvn test -PtestNativeTransport
+> mvn test -PNativeEpoll
+> mvn test -PNativeIoUring
+> mvn test -PNativeKQueue
```
Vert.x supports domain sockets on Linux exclusively, to run the tests with domain sockets
```
-> mvn test -PtestDomainSockets
+> mvn test -PNativeEpoll+DomainSockets
```
-Vert.x has a few integrations tests that run a differently configured JVM (classpath, system properties, etc....)
-for ALPN, native and logging
+Vert.x has integrations tests that run a differently configured JVM (classpath, system properties, etc....)
```
> vertx verify -Dtest=FooTest # FooTest does not exists, its only purpose is to execute no tests during the test phase
diff --git a/vertx-core/pom.xml b/vertx-core/pom.xml
index 314a7178b77..d8b7f598051 100644
--- a/vertx-core/pom.xml
+++ b/vertx-core/pom.xml
@@ -29,8 +29,8 @@
2.0.0.AM27
${project.basedir}/src/main/generated
1.37
- jdk
- false
+ jdk
+ false
@@ -252,8 +252,8 @@
${project.build.directory}
${project.version}
true
- ${vertx.testTransport}
- ${vertx.testDomainSockets}
+ ${vertx.surefire.nettyTransport}
+ ${vertx.surefire.useDomainSockets}
true
@@ -696,17 +696,17 @@
NativeEpoll
- epoll
- false
- false
+ epoll
+ false
+ false
NativeIoUring
- io_uring
- false
+ io_uring
+ false
false
@@ -714,8 +714,8 @@
NativeEpoll+DomainSockets
- epoll
- true
+ epoll
+ true
false
@@ -723,18 +723,18 @@
NativeKQueue
- kqueue
- false
- false
+ kqueue
+ false
+ false
NativeKQueue+DomainSockets
- kqueue
- true
- false
+ kqueue
+ true
+ false