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

Use snapshot version of gradle plugin

This commit is contained in:
Alex Plate 2022-06-30 09:14:19 +03:00
parent a49811a3f9
commit 6cdcf133bb
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
2 changed files with 11 additions and 1 deletions

View File

@ -24,7 +24,7 @@ plugins {
java
kotlin("jvm") version "1.6.21"
id("org.jetbrains.intellij") version "1.6.0"
id("org.jetbrains.intellij") version "1.7.0-SNAPSHOT"
id("org.jetbrains.changelog") version "1.3.1"
// ktlint linter - read more: https://github.com/JLLeitschuh/ktlint-gradle

View File

@ -1,3 +1,13 @@
// Set repository for snapshot versions of gradle plugin
pluginManagement {
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
gradlePluginPortal()
}
}
rootProject.name = 'IdeaVIM'
include 'vim-engine'