-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (46 loc) · 1.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
plugins {
id 'java'
id 'net.minecrell.licenser' version '0.3'
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
group = 'uk.jamierocks.canary'
archivesBaseName = project.name.toLowerCase()
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
maven {
name = 'neptune-temp'
url = 'http://www.neptunepowered.org/temprepo/'
}
maven {
name = 'mojang'
url = 'https://libraries.minecraft.net'
}
maven {
name = 'mcstats-releases'
url = 'http://repo.mcstats.org/content/repositories/releases'
}
maven {
name = 'mcstats-snapshots'
url = 'http://repo.mcstats.org/content/repositories/snapshots'
}
maven {
name = 'minecrell'
url = 'http://repo.minecrell.net/releases'
}
}
dependencies {
compile 'net.canarymod:CanaryLib:1.2.1-SNAPSHOT'
compile('com.google.inject:guice:4.0') {
exclude module: 'guava'
}
compile 'com.github.ben-manes.caffeine:caffeine:2.3.5'
// Neptune lifecycle
compile 'net.minecraft:launchwrapper:1.11'
}
license {
header = project.file('HEADER.txt')
exclude 'uk/jamierocks/canary/gplugins/config/ConfigurationProvider.java'
exclude 'uk/jamierocks/canary/gplugins/util/ReflectionUtil.java'
}