-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (40 loc) · 1.26 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
id 'java'
id 'eclipse'
id 'net.minecrell.licenser' version '0.4.1'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
repositories {
mavenCentral()
maven { url "https://repo.unascribed.com" }
maven { url "https://repo.elytradev.com" }
}
sourceCompatibility = 11
targetCompatibility = 11
dependencies {
implementation 'com.google.guava:guava:28.2-jre'
implementation 'com.playsawdust:toolbox:2.1.2'
implementation 'blue.endless:jankson:1.2.0-78'
implementation 'org.slf4j:slf4j-api:1.7.9'
implementation 'com.unascribed:asyncsimplelog:4.6.0'
implementation 'org.slf4j:log4j-over-slf4j:1.7.9'
implementation 'org.slf4j:jul-to-slf4j:1.7.9'
implementation 'org.slf4j:jcl-over-slf4j:1.7.9'
implementation 'org.eclipse.jetty:jetty-server:9.4.24.v20191120'
implementation 'org.jline:jline-terminal:3.13.3'
implementation 'org.jline:jline-reader:3.13.3'
implementation 'org.jline:jline-terminal-jansi:3.13.3'
implementation 'org.ow2.asm:asm:7.0-beta'
implementation 'org.ow2.asm:asm-tree:7.0-beta'
implementation 'com.h2database:h2:1.4.200'
implementation 'com.github.spullara.mustache.java:compiler:0.9.6'
}
license {
header = file('HEADER')
include '**/*.java'
}
shadowJar {
manifest {
attributes 'Main-Class': 'social.ionch.Bootstrap'
}
}