24 lines
427 B
Kotlin
24 lines
427 B
Kotlin
import java.io.File
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = "eagler-teavm"
|
|
url = uri("https://eaglercraft-teavm-fork.github.io/maven/")
|
|
}
|
|
maven {
|
|
name = "eagler-local"
|
|
url = uri(File(rootDir, "gradle/local-libs"))
|
|
}
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Eagler-1710"
|
|
|
|
include("target_lwjgl_desktop")
|
|
include("target_teavm_javascript")
|
|
include("target_teavm_wasm_gc")
|
|
|