Skip to content

1.1.2

Latest
Compare
Choose a tag to compare
@hltj hltj released this 10 Apr 07:28
· 15 commits to master since this release

Changes

  • update Java doc & upgrade vertx-core (no functionality change)

Changes in 1.1.1:

  • update Java doc (no functionality change)

Changes in 1.1.0:

Install

Maven

<dependency>
  <groupId>me.hltj</groupId>
  <artifactId>vertx-future-utils</artifactId>
  <version>1.1.2</version>
</dependency>

Gradle Kotlin DSL

implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.2")

Gradle Groovy DSL

implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.2'

With vertx-core Excluded

The default dependent version of io.vertx:vertx-core is 4.0.3, if you want to use vertx-future-utils
with vertx-core 3.8.5, 3.9.0 to 3.9.5, or 4.0.0 to 4.0.2 please exclude the default one.

for Maven

<dependency>
  <groupId>me.hltj</groupId>
  <artifactId>vertx-future-utils</artifactId>
  <version>1.1.2</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.2") {
    exclude(group = "io.vertx", module = "vertx-core")
}

for Gradle Groovy DSL

implementation group: 'me.hltj', name: 'vertx-future-utils', version: '1.1.2', {
    exclude group: "io.vertx", module: "vertx-core"
}