Skip to content

Commit

Permalink
Update various dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher committed May 11, 2019
1 parent a8438d3 commit 5c7fcc1
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jmailen.gradle.kotlinter.KotlinterExtension

plugins {
id("nebula.release") version "10.0.0"
id("nebula.release") version "10.1.1"
id("nebula.kotlin") version "1.3.31" apply false
id("org.jmailen.kotlinter") version "1.25.0" apply false
id("info.solidsoft.pitest") version "1.4.0" apply false
Expand Down
10 changes: 5 additions & 5 deletions site/site.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Commands:

plugins {
id("nebula.kotlin")
id("com.eden.orchidPlugin") version "0.16.7"
id("com.eden.orchidPlugin") version "0.16.10"
}

repositories {
Expand All @@ -27,10 +27,10 @@ repositories {
}

dependencies {
orchidCompile("io.github.javaeden.orchid:OrchidCore:0.16.7")
orchidRuntime("io.github.javaeden.orchid:OrchidDocs:0.16.7")
orchidRuntime("io.github.javaeden.orchid:OrchidPluginDocs:0.16.7")
orchidRuntime("io.github.javaeden.orchid:OrchidKotlindoc:0.16.7")
orchidCompile("io.github.javaeden.orchid:OrchidCore:0.16.10")
orchidRuntime("io.github.javaeden.orchid:OrchidDocs:0.16.10")
orchidRuntime("io.github.javaeden.orchid:OrchidPluginDocs:0.16.10")
orchidRuntime("io.github.javaeden.orchid:OrchidKotlindoc:0.16.10")
}

project.version = "${project.version}"
Expand Down
4 changes: 2 additions & 2 deletions strikt-core/strikt-core.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repositories {

dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1")
implementation("org.opentest4j:opentest4j:1.1.1")

testImplementation("dev.minutest:minutest:1.5.0")
testImplementation("dev.minutest:minutest:1.7.0")
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,3 @@ fun <T : BuildTask> Assertion.Builder<T>.isNoSource() =
*/
val <T : BuildTask> Assertion.Builder<T>.path: Assertion.Builder<String>
get() = get("task path", BuildTask::getPath)

2 changes: 1 addition & 1 deletion strikt-gradle/strikt-gradle.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {

testImplementation(gradleTestKit())
testImplementation("io.mockk:mockk:1.9.3")
testImplementation("dev.minutest:minutest:1.5.0")
testImplementation("dev.minutest:minutest:1.7.0")
}

tasks.dokka {
Expand Down
2 changes: 1 addition & 1 deletion strikt-jackson/strikt-jackson.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {

compileOnly("com.fasterxml.jackson.core:jackson-databind:2.9.8")

testImplementation("dev.minutest:minutest:1.5.0")
testImplementation("dev.minutest:minutest:1.7.0")
testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.8")
}

Expand Down
2 changes: 1 addition & 1 deletion strikt-protobuf/strikt-protobuf.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {

dependencies {
api(project(":strikt-core"))
api("com.google.protobuf:protobuf-java:3.7.0")
api("com.google.protobuf:protobuf-java:3.7.1")
}

tasks.dokka {
Expand Down
4 changes: 2 additions & 2 deletions strikt-spring/strikt-spring.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ dependencies {

api(project(":strikt-core"))

implementation(platform("org.springframework.boot:spring-boot-dependencies:2.1.3.RELEASE"))
implementation(platform("org.springframework.boot:spring-boot-dependencies:2.1.4.RELEASE"))
compileOnly("org.springframework:spring-test")
compileOnly("org.springframework:spring-web")
compileOnly("javax.servlet:javax.servlet-api")

testImplementation("dev.minutest:minutest:1.5.0")
testImplementation("dev.minutest:minutest:1.7.0")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.boot:spring-boot-starter-web")
}
Expand Down

0 comments on commit 5c7fcc1

Please sign in to comment.