forked from MohistMC/WorldEdit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (37 loc) · 1.36 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'com.sk89q.worldedit'
version '6.1.9-0.3-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.minebench.de/" }
maven { url "https://nexus.velocitypowered.com/repository/maven-public/" }
maven { url "https://github.com/mohist-community/maven/raw/master" }
maven { url "http://repo.bukkit.org/content/groups/public" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'de.schlichtherle:truezip:6.8.3'
compile 'rhino:js:1.7R2'
compile 'com.google.guava:guava:21.0'
compile 'com.sk89q:jchronic:0.2.4a'
compile 'com.google.code.findbugs:jsr305:1.3.9'
compile 'com.thoughtworks.paranamer:paranamer:2.6'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.sk89q.lib:jlibnoise:1.0.0'
compile 'com.sk89q:dummypermscompat:1.8'
compile 'com.mohistmc:mohistdev:0.1-SNAPSHOT'
testCompile 'org.mockito:mockito-core:1.9.0-rc1'
}
shadowJar {
dependencies {
include(dependency('com.sk89q:jchronic:0.2.4a'))
include(dependency('com.thoughtworks.paranamer:paranamer:2.6'))
include(dependency('com.sk89q.lib:jlibnoise:1.0.0'))
include(dependency('com.google.code.gson:gson:2.2.4'))
}
}