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

Convert settings.gradle to Kotlin

This commit is contained in:
Matt Ellis 2024-05-15 11:49:06 +01:00
parent af5f4227b7
commit b0bab992db
No known key found for this signature in database
GPG Key ID: FA6025D54131324B

View File

@ -2,19 +2,20 @@
pluginManagement { pluginManagement {
repositories { repositories {
maven { maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/' url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
} }
gradlePluginPortal() gradlePluginPortal()
} }
} }
rootProject.name = 'IdeaVIM' rootProject.name = "IdeaVIM"
include 'vim-engine'
include 'scripts' include("vim-engine")
include 'annotation-processors' include("scripts")
include 'tests:java-tests' include("annotation-processors")
include 'tests:property-tests' include("tests:java-tests")
include 'tests:long-running-tests' include("tests:property-tests")
include 'tests:ui-ij-tests' include("tests:long-running-tests")
include 'tests:ui-py-tests' include("tests:ui-ij-tests")
include 'tests:ui-fixtures' include("tests:ui-py-tests")
include("tests:ui-fixtures")