19 lines
561 B
Groovy
19 lines
561 B
Groovy
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
|
|
}
|
|
rootProject.name = 'EntityLib'
|
|
//include 'test-plugin'
|
|
include 'api'
|
|
include 'platforms:spigot'
|
|
findProject(':platforms:spigot')?.name = 'spigot'
|
|
include 'common'
|
|
include 'code-gen'
|
|
|
|
if (!Boolean.parseBoolean(System.getenv("JITPACK"))) {
|
|
include 'test-plugin'
|
|
}
|
|
include 'kotlin:kotlin-extensions-spigot'
|
|
findProject(':kotlin:kotlin-extensions-spigot')?.name = 'kotlin-extensions-spigot'
|
|
include 'platforms:velocity'
|
|
findProject(':platforms:velocity')?.name = 'velocity'
|
|
|