Skip to content

Commit a90c315

Browse files
committed
update detekt
1 parent 418a72b commit a90c315

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

.idea/copyright/IceRock.xml

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

.idea/copyright/profiles_settings.xml

Lines changed: 7 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ dependencies {
3030
}
3131

3232
java {
33-
sourceCompatibility = JavaVersion.VERSION_1_8
34-
targetCompatibility = JavaVersion.VERSION_1_8
33+
sourceCompatibility = JavaVersion.VERSION_11
34+
targetCompatibility = JavaVersion.VERSION_11
3535
withJavadocJar()
3636
withSourcesJar()
3737
}

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[versions]
2-
mokoGradlePluginVersion = "0.2.0"
2+
mokoGradlePluginVersion = "0.3.0"
33

4-
kotlinVersion = "1.6.10"
5-
androidGradlePluginVerison = "7.0.4"
6-
mobileMultiplatformVersion = "0.13.0"
7-
detektVersion = "1.19.0"
4+
kotlinVersion = "1.8.10"
5+
androidGradlePluginVerison = "7.4.2"
6+
mobileMultiplatformVersion = "0.14.2"
7+
detektVersion = "1.22.0"
88
nexusPublishVersion = "1.1.0"
99

1010
[libraries]
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-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/kotlin/dev/icerock/moko/gradle/DetektPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DetektPlugin : Plugin<Project> {
3636
target.tasks.getByName("check").dependsOn(detektTask)
3737

3838
target.dependencies {
39-
"detektPlugins"("io.gitlab.arturbosch.detekt:detekt-formatting:1.19.0")
39+
"detektPlugins"("io.gitlab.arturbosch.detekt:detekt-formatting:1.22.0")
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)