24 lines
508 B
Groovy
24 lines
508 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
gradlePluginPortal()
|
|
maven {
|
|
url = 'https://woggioni.net/mvn/'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "net.woggioni.gradle.envelope" version "0.1"
|
|
id "net.woggioni.gradle.lombok" version "0.1"
|
|
id 'org.jetbrains.kotlin.jvm' version getProperty('version.kotlin')
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'wson'
|
|
|
|
def includeDirs = ['antlr', 'benchmark', 'test-utils', 'wson-cli']
|
|
|
|
includeDirs.each {
|
|
include(it)
|
|
}
|