Skip to content

Commit

Permalink
Merge pull request #62 from wowselim/bump-kotlin-1.5.30-vertx-4.1.3
Browse files Browse the repository at this point in the history
bump libraries
  • Loading branch information
wowselim authored Sep 6, 2021
2 parents 49ad2e3 + d26d581 commit a0cec84
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
}
}

Expand All @@ -13,7 +13,7 @@ allprojects {
apply plugin: 'maven-publish'

group 'co.selim.ebservice'
version '2.0.2'
version '2.0.3'

java {
withSourcesJar()
Expand Down
4 changes: 2 additions & 2 deletions codegen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ repositories {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1"
implementation "io.vertx:vertx-core:4.1.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
implementation "io.vertx:vertx-core:4.1.3"
implementation "com.squareup:kotlinpoet:1.9.0"
implementation "com.squareup:kotlinpoet-metadata:1.9.0"
implementation project(':core')
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "io.vertx:vertx-core:4.1.1"
implementation "io.vertx:vertx-core:4.1.3"
api project(':annotation')
}

Expand Down
8 changes: 4 additions & 4 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ repositories {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
implementation project(':core')
kapt project(':codegen')

implementation "io.vertx:vertx-core:4.1.1"
implementation "io.vertx:vertx-lang-kotlin:4.1.1"
implementation "io.vertx:vertx-lang-kotlin-coroutines:4.1.1"
implementation "io.vertx:vertx-core:4.1.3"
implementation "io.vertx:vertx-lang-kotlin:4.1.3"
implementation "io.vertx:vertx-lang-kotlin-coroutines:4.1.3"
}
10 changes: 5 additions & 5 deletions test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ repositories {

dependencies {
testImplementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
testImplementation project(':core')
kaptTest project(':codegen')

testImplementation "io.vertx:vertx-core:4.1.1"
testImplementation "io.vertx:vertx-lang-kotlin:4.1.1"
testImplementation "io.vertx:vertx-lang-kotlin-coroutines:4.1.1"
testImplementation "io.vertx:vertx-core:4.1.3"
testImplementation "io.vertx:vertx-lang-kotlin:4.1.3"
testImplementation "io.vertx:vertx-lang-kotlin-coroutines:4.1.3"

testImplementation "io.vertx:vertx-junit5:4.1.1"
testImplementation "io.vertx:vertx-junit5:4.1.3"
}

test {
Expand Down

0 comments on commit a0cec84

Please sign in to comment.