Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Update project dependencies #28

Merged
merged 1 commit into from
Sep 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
detektPluginVersion=0.3.3
detektVersion=1.13.1
detektPluginVersion=0.4.0
detektVersion=1.14.0

# Gradle plugins
downloadVersion=4.1.1
gradleVersionsPluginVersion=0.31.0
kotlinVersion=1.4.0
kotlinCompilerChecksum=590391d13b3c65ba52cba470f56efd5b14e2b1f5b9459f63aa12eb38ef52f161
gradleVersionsPluginVersion=0.33.0
kotlinVersion=1.4.10
kotlinCompilerChecksum=bb1a21d70e521a01ae104e99a082a6e7bb58699b86347049da521d175d0dace7
shadowVersion=6.0.0

# Dependencies
assertJVersion=3.17.1
kotlinCompileTestVersion=1.2.10
spekVersion=2.0.12
assertJVersion=3.17.2
kotlinCompileTestVersion=1.3.0
spekVersion=2.0.13

kotlin.code.style=official
systemProp.sonar.host.url=http://localhost:9000
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pluginManagement {

plugins {
kotlin("jvm") version kotlinVersion
id("io.github.detekt.gradle.compiler-plugin") version "0.3.1"
id("io.github.detekt.gradle.compiler-plugin") version "0.3.3"
id("com.gradle.plugin-publish") version "0.12.0"
id("com.github.ben-manes.versions") version gradleVersionsPluginVersion
id("com.github.johnrengelman.shadow") version shadowVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class DetektKotlinCompilerPlugin : KotlinCompilerPluginSupportPlugin {
override fun getCompilerPluginId(): String = DETEKT_COMPILER_PLUGIN

override fun getPluginArtifact(): SubpluginArtifact =
SubpluginArtifact("io.github.detekt", "detekt-compiler-plugin", "0.2.0") // TODO: generate version
SubpluginArtifact("io.github.detekt", "detekt-compiler-plugin", "0.4.0") // TODO: generate version

override fun isApplicable(kotlinCompilation: KotlinCompilation<*>): Boolean =
kotlinCompilation.platformType in setOf(KotlinPlatformType.jvm, KotlinPlatformType.androidJvm)
Expand Down