-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (34 loc) · 865 Bytes
/
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
33
34
35
36
37
38
39
40
41
42
43
44
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.0.0'
}
group 'com.rayferric'
version '1.3.0'
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
shadowJar {
manifest {
attributes 'Main-Class': 'com.rayferric.dungeonfinder.cli.DungeonFinderCLI'
}
}
repositories {
mavenCentral()
maven {
url "https://jitpack.io"
}
}
dependencies {
compileOnly 'org.jetbrains:annotations:20.1.0'
implementation 'commons-cli:commons-cli:1.4'
implementation 'com.conversantmedia:rtree:1.0.5'
implementation 'com.github.Hugobros3:Enklume:bec416b92e42d9d2d661866f8758c0a1b432186d'
}
task copyDependencies(type: Copy) {
from configurations.runtimeClasspath
into 'lib'
}
task cleanDependencies(type: Delete) {
delete 'lib'
}