Skip to content

Commit f618632

Browse files
authored
Update all dependencies (#68)
1 parent aadc581 commit f618632

File tree

10 files changed

+51
-27
lines changed

10 files changed

+51
-27
lines changed

.idea/codeStyles/Project.xml

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-navigator.xml

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

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ import java.net.URL
2121

2222
plugins {
2323
kotlin("jvm") version "1.4.10" apply false
24-
id("io.gitlab.arturbosch.detekt") version "1.13.1"
24+
id("io.gitlab.arturbosch.detekt") version "1.14.2"
2525
id("com.appmattus.markdown") version "0.6.0"
26-
id("org.jetbrains.dokka") version "1.4.0"
26+
id("org.jetbrains.dokka") version "1.4.10.2"
2727
}
2828

2929
buildscript {
3030
repositories {
3131
google()
3232
}
3333
dependencies {
34-
classpath("com.android.tools.build:gradle:4.0.1")
34+
classpath("com.android.tools.build:gradle:4.1.0")
3535
}
3636
}
3737

@@ -68,7 +68,7 @@ tasks.register<Delete>("clean") {
6868
}
6969

7070
dependencies {
71-
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.13.1")
71+
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.14.2")
7272
}
7373

7474
detekt {
@@ -83,7 +83,7 @@ detekt {
8383

8484
val dokka = tasks.named<DokkaMultiModuleTask>("dokkaHtmlMultiModule") {
8585
outputDirectory.set(buildDir.resolve("dokkaCustomMultiModuleOutput"))
86-
documentationFileName.set("module.md")
86+
// documentationFileName.set("module.md")
8787
}
8888

8989
tasks.register("check").dependsOn(dokka)

fixture-android-tests/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies {
6161
exclude(group = "com.google.auto.service", module = "auto-service")
6262
}
6363

64-
testImplementation("junit:junit:4.13")
64+
testImplementation("junit:junit:4.13.1")
6565
testImplementation(kotlin("test"))
6666
testImplementation(kotlin("test-junit"))
6767
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")

fixture-generex/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
api(project(":fixture"))
3232
api("com.github.mifmif:generex:1.0.2")
3333

34-
testImplementation("junit:junit:4.13")
34+
testImplementation("junit:junit:4.13.1")
3535
testImplementation(kotlin("test"))
3636
testImplementation(kotlin("test-junit"))
3737
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")

fixture-javafaker/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
}
3737
}
3838

39-
testImplementation("junit:junit:4.13")
39+
testImplementation("junit:junit:4.13.1")
4040
testImplementation(kotlin("test"))
4141
testImplementation(kotlin("test-junit"))
4242
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")

fixture-kotest/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ apply(from = "$rootDir/gradle/scripts/dokka-javadoc.gradle.kts")
2929
dependencies {
3030
api(kotlin("stdlib-jdk8"))
3131
api(project(":fixture"))
32-
api("io.kotest:kotest-property-jvm:4.2.5")
32+
api("io.kotest:kotest-property-jvm:4.3.0")
3333

34-
testImplementation("junit:junit:4.13")
34+
testImplementation("junit:junit:4.13.1")
3535
testImplementation(kotlin("test"))
3636
testImplementation(kotlin("test-junit"))
3737
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")

fixture-kotest/src/main/kotlin/com/appmattus/kotlinfixture/kotest/KotestGenerator.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ package com.appmattus.kotlinfixture.kotest
1818

1919
import com.appmattus.kotlinfixture.Fixture
2020
import io.kotest.property.Arb
21-
import io.kotest.property.arbitrary.arb
21+
import io.kotest.property.arbitrary.arbitrary
2222

2323
/**
2424
* Creates a new [Arb] that performs no shrinking, and generates values for the given type, [T].
2525
* @suppress
2626
*/
27-
inline fun <reified T> Fixture.kotestGen() = arb { asSequence<T>() }
27+
inline fun <reified T> Fixture.kotestGen(): Arb<T> = arbitrary { this() }

fixture/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ dependencies {
3131
api("io.github.classgraph:classgraph:4.8.90")
3232
api(kotlin("reflect"))
3333

34-
compileOnly("joda-time:joda-time:2.10.6")
35-
testImplementation("joda-time:joda-time:2.10.6")
34+
compileOnly("joda-time:joda-time:2.10.8")
35+
testImplementation("joda-time:joda-time:2.10.8")
3636

37-
compileOnly("org.threeten:threetenbp:1.4.4")
38-
testImplementation("org.threeten:threetenbp:1.4.4")
37+
compileOnly("org.threeten:threetenbp:1.5.0")
38+
testImplementation("org.threeten:threetenbp:1.5.0")
3939

4040
compileOnly(files("${System.getenv("ANDROID_HOME")}/platforms/android-29/android.jar"))
4141

42-
testImplementation("junit:junit:4.13")
42+
testImplementation("junit:junit:4.13.1")
4343
testImplementation(kotlin("test"))
4444
testImplementation(kotlin("test-junit"))
4545
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
Lines changed: 1 addition & 1 deletion
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.7-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)