forked from EverNife/FinalForgeRestrictor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
87 lines (63 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
plugins {
id 'java'
}
group 'net.kaikk.mc'
version '1.3.5'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
name = 'papermc'
url = 'https://papermc.io/repo/repository/maven-public/'
}
maven {
name = 'dmulloy2-repo'
url = 'https://repo.dmulloy2.net/nexus/repository/public/'
}
maven {
name = 'enginehub'
url = 'https://maven.enginehub.org/repo/'
}
maven {
name = 'jitpack'
url = 'https://jitpack.io'
}
maven {
name = 'Sonatype OSS'
url = 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven {
name = 'spigotmc'
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
content {
includeGroup 'org.bukkit'
includeGroup 'org.spigotmc'
}
}
maven {
name = 'CodeMC'
url = 'https://repo.codemc.io/'
}
maven {
name = 'sk89q'
url = 'http://maven.sk89q.com/repo/'
}
maven {
name = 'intellectualsites'
url = "https://mvn.intellectualsites.com/content/groups/public/"
}
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT'
compileOnly 'org.bukkit:bukkit:1.12.2-R0.1-SNAPSHOT'
compileOnly 'com.sk89q.worldedit:worldedit-bukkit:6.1.5'
compileOnly 'com.sk89q.worldedit:worldedit-core:6.0.0-SNAPSHOT'
compileOnly 'com.sk89q.worldguard:worldguard-legacy:6.2'
compileOnly 'com.github.TechFortress:GriefPrevention:16.12.0'
compileOnly 'com.plotsquared:PlotSquared:5.1'
compileOnly fileTree(dir: 'flatLibs', include: '*.jar')
}