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:
parent
af5f4227b7
commit
b0bab992db
@ -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")
|
||||||
|
Loading…
Reference in New Issue
Block a user