-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 944 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
42
43
44
45
46
group 'tw.davy.minecraft.skinny'
version '1.3-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceSets {
main {
java {
srcDir 'src/java'
}
resources {
srcDir 'src/resources'
}
}
}
repositories {
jcenter()
maven {
name 'sonatype-nexus'
url 'https://oss.sonatype.org/content/groups/public'
}
maven {
name 'spigotmc-nexus'
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots'
}
maven {
name 'dmulloy2-repo'
url 'http://repo.dmulloy2.net/content/groups/public'
}
}
dependencies {
compile 'org.jetbrains:annotations:15.0'
compileClasspath 'org.bukkit:bukkit:1.11.2-R0.1-SNAPSHOT', {
ext { fatJarExclude = true }
}
compileClasspath 'com.comphenix.protocol:ProtocolLib-API:4.2.0', {
ext { fatJarExclude = true }
}
}