1.1.0
Changes
- add
nonEmpty()
,mapSome()
&flatMapSome()
methods toFutureUtils
- add
FutureExtensions
for working with lombokExtensionMethod
Install
Maven
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.0</version>
</dependency>
Gradle Kotlin DSL
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.0")
Gradle Groovy DSL
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.0'
With vertx-core
Excluded
The default dependent version of io.vertx:vertx-core
is 4.0.0
, if you want to use vertx-future-utils
with vertx-core
3.8.5
or 3.9.0
to 3.9.5
, please exclude the default one.
for Maven
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.0</version>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</exclusion>
</exclusions>
</dependency>
for Gradle Kotlin DSL
implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.0', {
exclude group: "io.vertx", module: "vertx-core"
}
for Gradle Groovy DSL
implementation 'me.hltj:vertx-future-utils:1.1.0', {
exclude group: "io.vertx", module: "vertx-core"
}