2022-01-28 08:53:02 +00:00
|
|
|
buildscript {
|
2022-01-28 09:32:01 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
}
|
2022-01-28 08:53:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2022-01-28 09:32:01 +00:00
|
|
|
apply plugin: "eclipse"
|
|
|
|
version = '1.0'
|
|
|
|
ext {
|
|
|
|
appName = "demo4d"
|
2022-01-31 00:21:39 +00:00
|
|
|
appJvmCode = 11
|
|
|
|
appEncoding = "UTF-8"
|
|
|
|
x4oVersion = "0.8.6"
|
2022-01-28 09:32:01 +00:00
|
|
|
gdxVersion = "1.10.0"
|
|
|
|
spairVersion = "1.86.0"
|
|
|
|
nativefilechooserVersion = "1.0.0"
|
2022-01-31 14:03:30 +00:00
|
|
|
junitVersion = "5.7.2"
|
2022-01-28 09:32:01 +00:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral {
|
|
|
|
metadataSources {
|
|
|
|
mavenPom()
|
|
|
|
artifact()
|
|
|
|
ignoreGradleMetadataRedirection()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-28 08:53:02 +00:00
|
|
|
}
|
|
|
|
|
2022-02-02 15:29:29 +00:00
|
|
|
project(":demo4d-bassboonyd") {
|
|
|
|
apply plugin: "java-library"
|
|
|
|
dependencies {
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
|
|
|
}
|
|
|
|
tasks.named('test') {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-04 17:21:23 +00:00
|
|
|
project(":demo4d-numberxd") {
|
2022-01-31 14:03:30 +00:00
|
|
|
apply plugin: "java-library"
|
|
|
|
dependencies {
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
|
2022-02-02 15:29:29 +00:00
|
|
|
api project(":demo4d-bassboonyd")
|
2022-01-31 14:03:30 +00:00
|
|
|
//api "org.x4o:x4o-driver:$x4oVersion"
|
|
|
|
}
|
|
|
|
tasks.named('test') {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-04 17:35:05 +00:00
|
|
|
project(":demo4d-gdxapp") {
|
2022-01-28 09:32:01 +00:00
|
|
|
apply plugin: "java-library"
|
|
|
|
dependencies {
|
2022-01-31 00:21:39 +00:00
|
|
|
//api "org.x4o:x4o-driver:$x4oVersion"
|
2022-02-04 17:21:23 +00:00
|
|
|
api project(":demo4d-numberxd")
|
2022-01-28 09:32:01 +00:00
|
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
|
|
api "io.github.spair:imgui-java-binding:$spairVersion"
|
|
|
|
api "io.github.spair:imgui-java-lwjgl3:$spairVersion"
|
|
|
|
api "io.github.spair:imgui-java-natives-linux:$spairVersion"
|
|
|
|
api "io.github.spair:imgui-java-natives-macos:$spairVersion"
|
|
|
|
api "io.github.spair:imgui-java-natives-windows:$spairVersion"
|
|
|
|
api "games.spooky.gdx:gdx-nativefilechooser:$nativefilechooserVersion"
|
|
|
|
}
|
2022-01-28 08:53:02 +00:00
|
|
|
}
|
2022-02-04 17:35:05 +00:00
|
|
|
|
|
|
|
project(":demo4d-gdxapp-desktop") {
|
|
|
|
apply plugin: "java-library"
|
|
|
|
dependencies {
|
|
|
|
implementation project(":demo4d-gdxapp")
|
|
|
|
api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
|
|
|
|
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
api "games.spooky.gdx:gdx-nativefilechooser-desktop:$nativefilechooserVersion"
|
|
|
|
}
|
|
|
|
}
|