WarsmashModEngine/build.gradle

98 lines
2.5 KiB
Groovy
Raw Normal View History

2018-12-04 05:35:14 +01:00
buildscript {
repositories {
mavenLocal()
2019-09-08 23:39:20 +02:00
flatDir {
dirs "$rootProject.projectDir/jars"
}
2018-12-04 05:35:14 +01:00
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://maven.nikr.net/" }
2018-12-04 05:35:14 +01:00
jcenter()
google()
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
version = '1.0'
ext {
appName = "warsmash"
gdxVersion = '1.9.8'
roboVMVersion = '2.3.5'
box2DLightsVersion = '1.4'
ashleyVersion = '1.7.0'
aiVersion = '1.8.0'
2020-05-18 05:57:07 +02:00
antlrVersion = '4.7'
2018-12-04 05:35:14 +01:00
}
repositories {
mavenLocal()
mavenCentral()
google()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://maven.nikr.net/" }
2018-12-04 05:35:14 +01:00
maven { url 'https://jitpack.io' }
}
}
project(":desktop") {
apply plugin: "java"
dependencies {
compile project(":core")
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
compile "com.google.guava:guava:23.5-jre"
compile "net.nikr:dds:1.0.0"
2018-12-04 05:35:14 +01:00
implementation 'com.github.inwc3:wc3libs:-SNAPSHOT'
2019-09-08 23:39:20 +02:00
compile files(fileTree(dir:'../jars', includes: ['*.jar']))
2018-12-04 05:35:14 +01:00
}
}
project(":core") {
apply plugin: "java"
dependencies {
2020-05-18 05:57:07 +02:00
compile project(":fdfparser")
compile project(":jassparser")
2018-12-04 05:35:14 +01:00
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
compile "com.google.guava:guava:23.5-jre"
compile "net.nikr:dds:1.0.0"
2018-12-04 05:35:14 +01:00
implementation 'com.github.inwc3:wc3libs:-SNAPSHOT'
2019-09-08 23:39:20 +02:00
compile files(fileTree(dir:'../jars', includes: ['*.jar']))
2018-12-04 05:35:14 +01:00
}
}
2020-05-18 05:57:07 +02:00
project(":fdfparser") {
apply plugin: "antlr"
dependencies {
antlr "org.antlr:antlr4:$antlrVersion" // use antlr version 4
}
}
project(":jassparser") {
apply plugin: "antlr"
dependencies {
antlr "org.antlr:antlr4:$antlrVersion" // use antlr version 4
}
}
2018-12-04 05:35:14 +01:00
tasks.eclipse.doLast {
delete ".project"
}