Skip to content

Commit 668a98a

Browse files
committed
Upgrade all dependencies and gradle to latest milestone versions
1 parent 2e3daea commit 668a98a

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

build.gradle.kts

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.qameta.allure.gradle.task.AllureServe
55

66
plugins {
77
// `kotlin-dsl` version "1.3.6" apply false
8-
kotlin("jvm") version "1.4.0" apply false
8+
kotlin("jvm") version "1.4.31" apply false
99
id("net.vivin.gradle-semantic-build-versioning") apply false
1010
id("com.adarshr.test-logger") version "2.0.0" apply false
1111
id("com.github.ben-manes.versions") version "0.28.0" apply false
@@ -43,16 +43,16 @@ subprojects {
4343
implementation(kotlin("stdlib-jdk8"))
4444
implementation(kotlin("reflect"))
4545
implementation("org.slf4j:slf4j-api:1.7.30")
46-
testImplementation("io.kotest:kotest-runner-junit5:4.2.2")
47-
testImplementation("io.kotest:kotest-extensions-allure:4.2.2")
48-
testImplementation("io.kotest:kotest-runner-junit5-jvm:4.2.2")
49-
testImplementation("io.kotest:kotest-assertions-core-jvm:4.2.2")
50-
testImplementation("io.kotest:kotest-property-jvm:4.2.2")
51-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.2")
52-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.2")
46+
testImplementation("io.kotest:kotest-runner-junit5:4.4.1")
47+
testImplementation("io.kotest:kotest-extensions-allure:4.4.1")
48+
testImplementation("io.kotest:kotest-runner-junit5-jvm:4.4.1")
49+
testImplementation("io.kotest:kotest-assertions-core-jvm:4.4.1")
50+
testImplementation("io.kotest:kotest-property-jvm:4.4.1")
51+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.1")
52+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.1")
5353
testRuntimeOnly("ch.qos.logback:logback-core:1.2.3")
5454
testRuntimeOnly("ch.qos.logback:logback-classic:1.2.3")
55-
testRuntimeOnly("org.codehaus.groovy:groovy:3.0.5")
55+
testRuntimeOnly("org.codehaus.groovy:groovy:3.0.7")
5656
}
5757

5858
configure<JavaPluginConvention> {
@@ -127,9 +127,9 @@ subprojects {
127127
aspectjweaver = false
128128
aspectjVersion = "1.9.6"
129129
autoconfigure = true
130-
allureJavaVersion = "2.13.3"
130+
allureJavaVersion = "2.13.8"
131131
useJUnit5 {
132-
version = "2.13.5"
132+
version = "2.13.8"
133133
}
134134
}
135135
}

cli-bot/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ import com.adarshr.gradle.testlogger.theme.ThemeType
33

44
plugins {
55
kotlin("jvm")
6-
id("com.github.johnrengelman.shadow") version "6.0.0"
6+
id("com.github.johnrengelman.shadow") version "6.1.0"
77
application
8-
id("com.palantir.graal") version "0.7.1"
8+
id("com.palantir.graal") version "0.7.2"
99
}
1010

1111
val mainFunction = "io.github.serpro69.kfaker.app.KFakerKt"
1212
val mainAppClass = "io.github.serpro69.kfaker.app.KFaker"
1313

1414
dependencies {
1515
implementation(project(":core"))
16-
implementation("info.picocli:picocli:4.5.1")
16+
implementation("info.picocli:picocli:4.6.1")
1717
}
1818

1919
application {

core/build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ plugins {
44
kotlin("jvm")
55
`maven-publish`
66
id("com.jfrog.bintray") version "1.8.5"
7-
id("org.jetbrains.dokka") version "1.4.0-rc"
7+
id("org.jetbrains.dokka") version "1.4.20"
88
}
99

1010
dependencies {
11-
implementation("com.fasterxml.jackson.core:jackson-databind:2.11.2")
12-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.2")
13-
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.11.2")
11+
implementation("com.fasterxml.jackson.core:jackson-databind:2.12.1")
12+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.1")
13+
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.12.1")
1414
implementation("com.github.mifmif:generex:1.0.2")
1515
runtimeOnly(kotlin("script-runtime"))
1616
}
@@ -49,7 +49,7 @@ val sourcesJar by tasks.creating(Jar::class) {
4949

5050
val dokkaJavadocJar by tasks.creating(Jar::class) {
5151
dependsOn(tasks.dokkaJavadoc)
52-
from(tasks.dokkaJavadoc.get().getOutputDirectoryAsFile())
52+
from(tasks.dokkaJavadoc.get().outputDirectory.orNull)
5353
archiveClassifier.set("javadoc")
5454
}
5555

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)