mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-07 13:34:02 +02:00
Convert settings.gradle to Kotlin
This commit is contained in:
parent
af5f4227b7
commit
b0bab992db
@ -2,19 +2,20 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
maven {
|
||||
url 'https://oss.sonatype.org/content/repositories/snapshots/'
|
||||
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
|
||||
}
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = 'IdeaVIM'
|
||||
include 'vim-engine'
|
||||
include 'scripts'
|
||||
include 'annotation-processors'
|
||||
include 'tests:java-tests'
|
||||
include 'tests:property-tests'
|
||||
include 'tests:long-running-tests'
|
||||
include 'tests:ui-ij-tests'
|
||||
include 'tests:ui-py-tests'
|
||||
include 'tests:ui-fixtures'
|
||||
rootProject.name = "IdeaVIM"
|
||||
|
||||
include("vim-engine")
|
||||
include("scripts")
|
||||
include("annotation-processors")
|
||||
include("tests:java-tests")
|
||||
include("tests:property-tests")
|
||||
include("tests:long-running-tests")
|
||||
include("tests:ui-ij-tests")
|
||||
include("tests:ui-py-tests")
|
||||
include("tests:ui-fixtures")
|
||||
|
Loading…
Reference in New Issue
Block a user