1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-29 10:34:10 +02:00

Update kotlin version to 1.7.20

This commit is contained in:
Alex Plate 2022-10-28 08:13:04 +03:00
parent 45908f2a84
commit 19a6284023
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ buildscript {
} }
dependencies { dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
classpath("com.github.AlexPl292:mark-down-to-slack:1.1.2") classpath("com.github.AlexPl292:mark-down-to-slack:1.1.2")
classpath("org.eclipse.jgit:org.eclipse.jgit:6.1.0.202203080745-r") classpath("org.eclipse.jgit:org.eclipse.jgit:6.1.0.202203080745-r")
classpath("org.kohsuke:github-api:1.305") classpath("org.kohsuke:github-api:1.305")
@ -24,7 +24,7 @@ buildscript {
plugins { plugins {
antlr antlr
java java
kotlin("jvm") version "1.6.21" kotlin("jvm") version "1.7.20"
id("org.jetbrains.intellij") version "1.10.0-SNAPSHOT" id("org.jetbrains.intellij") version "1.10.0-SNAPSHOT"
id("org.jetbrains.changelog") version "1.3.1" id("org.jetbrains.changelog") version "1.3.1"

View File

@ -10,7 +10,7 @@ antlrVersion=4.10.1
# Please don't forget to update kotlin version in buildscript section # Please don't forget to update kotlin version in buildscript section
kotlinVersion=1.6.21 kotlinVersion=1.7.20
publishToken=token publishToken=token
publishChannels=eap publishChannels=eap

View File

@ -14,7 +14,7 @@ repositories {
dependencies { dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1") testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
compileOnly("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21") compileOnly("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20")
compileOnly("org.jetbrains:annotations:23.0.0") compileOnly("org.jetbrains:annotations:23.0.0")
} }