-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (28 loc) · 853 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
group 'com.vcsajen'
version '1.0'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
name = 'sponge'
url = 'http://repo.spongepowered.org/maven'
}
maven { url "http://maven.sk89q.com/repo/" }
maven { url "https://jitpack.io" }
}
configurations {
myCode
}
dependencies {
compile 'org.spongepowered:spongeapi:4.1.0-SNAPSHOT'
compile 'com.sk89q.worldedit:worldedit-core:6.1'
compile 'com.github.VcSaJen:CuboidLocale:d4900d7d7f'
compile group: 'com.ibm.icu', name: 'icu4j', version: '56.1'
myCode group: 'com.ibm.icu', name: 'icu4j', version: '56.1'
myCode 'com.github.VcSaJen:CuboidLocale:d4900d7d7'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
jar {
from configurations.myCode.collect { it.isDirectory() ? it : zipTree(it) }
}