-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
34 lines (28 loc) · 932 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '1.2.4'
}
group 'net.heyzeeere0.mm'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
maven { url "http://repo.dmulloy2.net/nexus/repository/public/" }
maven { url "https://nexus.wesjd.net/repository/thirdparty/" }
}
dependencies {
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.rethinkdb:rethinkdb-driver:2.3.3'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.0.pr1'
compile 'org.json:json:20170516'
compile 'net.wesjd:anvilgui:1.2.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot:1.14.1-R0.1-SNAPSHOT'
compileOnly 'com.comphenix.protocol:ProtocolLib:4.4.0'
compileOnly 'org.projectlombok:lombok:1.16.16'
}
compileJava {
options.encoding = 'UTF-8'
}
shadowJar.archiveName = 'MagiMarket-1.0.jar'