Skip to content

Commit

Permalink
release 1.1.1 for Java doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
hltj committed Dec 20, 2020
1 parent 9cf7919 commit 6861c54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,20 @@ Convenient Utilities for Vert.x [`Future`](https://vertx.io/docs/apidocs/io/vert
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
```

### Gradle Kotlin DSL

``` kotlin
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.0")
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1")
```

### Gradle Groovy DSL

``` groovy
implementation 'me.hltj:vertx-future-utils:1.1.0'
implementation 'me.hltj:vertx-future-utils:1.1.1'
```

### With `vertx-core` Excluded
Expand All @@ -90,7 +90,7 @@ with `vertx-core` `3.8.5` or `3.9.0` to `3.9.4`, please exclude the default one.
<dependency>
<groupId>me.hltj</groupId>
<artifactId>vertx-future-utils</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<exclusions>
<exclusion>
<groupId>io.vertx</groupId>
Expand All @@ -103,15 +103,15 @@ with `vertx-core` `3.8.5` or `3.9.0` to `3.9.4`, please exclude the default one.
#### for Gradle Kotlin DSL

``` kotlin
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.0") {
implementation(group = "me.hltj", name = "vertx-future-utils", version = "1.1.1") {
exclude(group = "io.vertx", module = "vertx-core")
}
```

#### for Gradle Groovy DSL

``` groovy
implementation 'me.hltj:vertx-future-utils:1.1.0', {
implementation 'me.hltj:vertx-future-utils:1.1.1', {
exclude group: "io.vertx", module: "vertx-core"
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "me.hltj"
version = "1.1.0"
version = "1.1.1"

repositories {
mavenCentral()
Expand Down

0 comments on commit 6861c54

Please sign in to comment.