Skip to content

Commit

Permalink
Updated dependencies versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Salomon BRYS committed Nov 27, 2020
1 parent 747f905 commit 8f595fc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val ktorVersion = "1.1.1"
val ktorVersion = "1.4.2"
val logbackVersion = "1.2.3"

plugins {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val ktorVersion = "1.1.1"
val ktorVersion = "1.4.2"
val logbackVersion = "1.2.3"

plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ tasks.withType<Test> {

dependencies {
api(project(":kodein-di"))
implementation("no.tornado:tornadofx:1.7.19")
implementation("no.tornado:tornadofx:1.7.20")
implementation("org.jetbrains.kotlin:kotlin-reflect:${kodeinVersions.kotlin}")
testImplementation("org.testfx:testfx-core:4.0.4-alpha")
testImplementation("org.junit.jupiter:junit-jupiter:5.4.2")
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public val jxInjectorModule: DI.Module = DI.Module("JX Injector") {
Bind() from SetBinding<Any, JxInjectorContainer.Qualifier>(TypeToken.Any, erased(), erasedSet())
jxQualifier(Named::class.java) { it.value }

bind<JxInjectorContainer>() with Singleton(NoScope(), erased(), erased()) { JxInjectorContainer(Instance(erasedSet())) }
bind<JxInjectorContainer>() with Singleton(NoScope(), erased(), false, erased()) { JxInjectorContainer(Instance(erasedSet())) }
}

/**
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
maven(url = "https://dl.bintray.com/kodein-framework/Kodein-Internal-Gradle")
}
dependencies {
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:5.2.0")
classpath("org.kodein.internal.gradle:kodein-internal-gradle-settings:5.2.1")
}
}

Expand Down

0 comments on commit 8f595fc

Please sign in to comment.