forked from MindustryGame/wiki-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (27 loc) · 1.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
apply plugin: 'java'
sourceCompatibility = 16
targetCompatibility = 16
version = '1.0'
sourceSets.main.java.srcDirs = ["src/"]
allprojects{
repositories{
mavenLocal()
mavenCentral()
maven{ url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven{ url "https://oss.sonatype.org/content/repositories/releases/" }
maven{ url 'https://jitpack.io' }
}
}
task run(dependsOn: classes, type: JavaExec){
mainClass = "wikigen.Generator"
workingDir = new File("../Mindustry/core/assets")
classpath = sourceSets.main.runtimeClasspath
}
dependencies{
//desktop files required for natives, server required for command list
implementation files("../Mindustry/desktop/build/libs/Mindustry.jar")
implementation files("lib/javaparser.jar")
implementation files("../Mindustry/server/build/libs/server-release.jar")
//implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.17.0'
implementation "org.reflections:reflections:0.9.11"
}