Dependencies - upgrade org.jetbrains.intellij to 0.6.4

This commit is contained in:
Jakub Chrzanowski 2020-11-23 00:07:00 +01:00
parent 4975707700
commit f95ec32e5c
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@
## [Unreleased] ## [Unreleased]
### Changed ### Changed
- Upgrade Gradle Wrapper to `6.7.1` - Upgrade Gradle Wrapper to `6.7.1`
- Dependencies - upgrade `org.jetbrains.intellij` to `0.6.4`
## [0.7.0] ## [0.7.0]
### Added ### Added

View File

@ -9,13 +9,15 @@ plugins {
// Kotlin support // Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.4.10" id("org.jetbrains.kotlin.jvm") version "1.4.10"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin // gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "0.6.3" id("org.jetbrains.intellij") version "0.6.4"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin // gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id("org.jetbrains.changelog") version "0.6.2" id("org.jetbrains.changelog") version "0.6.2"
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html // detekt linter - read more: https://detekt.github.io/detekt/gradle.html
id("io.gitlab.arturbosch.detekt") version "1.14.2" id("io.gitlab.arturbosch.detekt") version "1.14.2"
// ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle // ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle
id("org.jlleitschuh.gradle.ktlint") version "9.4.1" id("org.jlleitschuh.gradle.ktlint") version "9.4.1"
// dependency checker
id("com.github.ben-manes.versions") version "0.36.0"
} }
// Import variables from gradle.properties file // Import variables from gradle.properties file