forked from MindustryInside/LightweightHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (26 loc) · 720 Bytes
/
build.gradle
File metadata and controls
32 lines (26 loc) · 720 Bytes
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'
repositories{
mavenCentral()
maven{url 'https://www.jitpack.io'}
}
ext{
versions = [:]
versions.mindustry = 'v126.2'
versions.gson = '2.8.6'
}
dependencies{
compileOnly "com.github.Anuken.Arc:arc-core:$versions.mindustry"
compileOnly "com.github.Anuken.Mindustry:core:$versions.mindustry"
implementation "com.google.code.gson:gson:$versions.gson"
}
tasks.withType(JavaCompile){
if(JavaVersion.current() != JavaVersion.VERSION_1_8){
options.compilerArgs += ['--release', '8']
}
}
jar{
archiveFileName.set "${project.archivesBaseName}.jar"
from{
configurations.runtimeClasspath.collect{it.isDirectory() ? it : zipTree(it)}
}
}