Skip to content

Commit

Permalink
update detekt
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed Apr 16, 2023
1 parent 418a72b commit a90c315
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .idea/copyright/IceRock.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
withJavadocJar()
withSourcesJar()
}
Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[versions]
mokoGradlePluginVersion = "0.2.0"
mokoGradlePluginVersion = "0.3.0"

kotlinVersion = "1.6.10"
androidGradlePluginVerison = "7.0.4"
mobileMultiplatformVersion = "0.13.0"
detektVersion = "1.19.0"
kotlinVersion = "1.8.10"
androidGradlePluginVerison = "7.4.2"
mobileMultiplatformVersion = "0.14.2"
detektVersion = "1.22.0"
nexusPublishVersion = "1.1.0"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/main/kotlin/dev/icerock/moko/gradle/DetektPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class DetektPlugin : Plugin<Project> {
target.tasks.getByName("check").dependsOn(detektTask)

target.dependencies {
"detektPlugins"("io.gitlab.arturbosch.detekt:detekt-formatting:1.19.0")
"detektPlugins"("io.gitlab.arturbosch.detekt:detekt-formatting:1.22.0")
}
}
}

0 comments on commit a90c315

Please sign in to comment.