-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
41 lines (28 loc) · 838 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
plugins {
id 'java-library'
}
compileJava.options.encoding = 'UTF-8'
group = 'work.mgnet'
version = '1.0'
description = 'Adds FFA'
repositories {
jcenter()
maven {
name = 'enginehub-repo'
url = 'https://maven.enginehub.org/repo/'
}
maven { url 'http://ci.athion.net/job/FastAsyncWorldEdit/ws/mvn/' }
maven {
name = 'sponge-repo'
url = 'https://repo.spongepowered.org/maven'
}
}
dependencies {
api 'org.apache.commons:commons-math3:3.6.1'
implementation 'com.google.guava:guava:28.2-jre'
testImplementation 'junit:junit:4.12'
compile 'org.spongepowered:spongeapi:7.2.0'
compile 'com.boydti:fawe-api:latest'
compile 'com.sk89q.worldedit:worldedit-core:6.1'
compile 'com.sk89q.worldedit:worldedit-sponge:6.1.7-SNAPSHOT'
}