Skip to content

Commit

Permalink
mac os support
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Sep 15, 2024
1 parent 52c922b commit 27ddd59
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
23 changes: 19 additions & 4 deletions vertx-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,6 @@

<profiles>

<!-- Run tests with native transport -->
<profile>
<id>NativeEpoll</id>
<properties>
Expand All @@ -652,17 +651,15 @@
</properties>
</profile>

<!-- Run tests with native transport -->
<profile>
<id>IoUring</id>
<id>NativeIoUring</id>
<properties>
<vertx.testTransport>io_uring</vertx.testTransport>
<vertx.testDomainSockets>false</vertx.testDomainSockets>
<vertx.testUseModulePath>false</vertx.testUseModulePath>
</properties>
</profile>

<!-- Run tests with native transport and domain sockets -->
<profile>
<id>NativeEpoll+DomainSockets</id>
<properties>
Expand All @@ -672,6 +669,24 @@
</properties>
</profile>

<profile>
<id>NativeKQueue</id>
<properties>
<vertx.testTransport>kqueue</vertx.testTransport>
<vertx.testDomainSockets>false</vertx.testDomainSockets>
<vertx.testUseModulePath>false</vertx.testUseModulePath>
</properties>
</profile>

<profile>
<id>NativeKQueue+DomainSockets</id>
<properties>
<vertx.testTransport>kqueue</vertx.testTransport>
<vertx.testDomainSockets>true</vertx.testDomainSockets>
<vertx.testUseModulePath>false</vertx.testUseModulePath>
</properties>
</profile>

<profile>
<id>benchmarks</id>
<build>
Expand Down
1 change: 1 addition & 0 deletions vertx-core/src/main/java/io/vertx/core/VertxBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public interface VertxBuilder {
* @return a reference to this, so the API can be used fluently
*/
@GenIgnore(GenIgnore.PERMITTED_TYPE)
@Fluent
VertxBuilder withTransport(Transport transport);

/**
Expand Down

0 comments on commit 27ddd59

Please sign in to comment.