Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit ee7f0b5

Browse files
authored
Merge pull request #35 from k163377/update_libs
Update libs.
2 parents 58566c1 + 3c53de2 commit ee7f0b5

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.idea/misc.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
22
id("maven")
33
id("java")
4-
id("org.jetbrains.kotlin.jvm") version "1.4.10"
5-
id("org.jlleitschuh.gradle.ktlint") version "9.3.0"
4+
id("org.jetbrains.kotlin.jvm") version "1.4.21"
5+
id("org.jlleitschuh.gradle.ktlint") version "9.4.1"
66
id("jacoco")
77
}
88

99
group = "com.mapk"
10-
version = "0.18"
10+
version = "0.19"
1111

1212
java {
1313
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -31,14 +31,14 @@ dependencies {
3131
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
3232
implementation(kotlin("reflect"))
3333
// https://mvnrepository.com/artifact/org.jetbrains/annotations
34-
compileOnly(group = "org.jetbrains", name = "annotations", version = "19.0.0")
34+
compileOnly(group = "org.jetbrains", name = "annotations", version = "20.1.0")
3535

3636
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter
37-
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.6.2") {
37+
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter", version = "5.7.0") {
3838
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
3939
}
4040
// https://mvnrepository.com/artifact/io.mockk/mockk
41-
testImplementation("io.mockk:mockk:1.10.0")
41+
testImplementation("io.mockk:mockk:1.10.3-jdk8")
4242
}
4343

4444
tasks {

src/test/kotlin/com/mapk/core/internal/FullInitializedFunctionWrapperTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ class FullInitializedFunctionWrapperTest {
3131
val func = Dst::class.companionObject!!.functions.first { it.name == "of" }
3232
val instance = Dst::class.companionObjectInstance!!
3333
val fullInitializedFunctionWrapper = FullInitializedFunctionWrapper(
34-
func, instance, 3
34+
func,
35+
instance,
36+
3
3537
)
3638
assertEquals(expected, fullInitializedFunctionWrapper.call(arrayOf(instance, 1, "2")))
3739
}

0 commit comments

Comments
 (0)