forked from dvhaldane/ForgeRestrictor
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
50 lines (41 loc) · 1.3 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
buildscript {
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
}
group 'br.com.finalcraft'
version '2.0.6'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
repositories {
flatDir {
dirs 'libs'
}
mavenCentral()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/groups/public/'
}
maven {
url = 'https://maven.petrus.dev/public'
}
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.19.2-R0.1-SNAPSHOT'
compileOnly 'br.com.finalcraft:EverNifeCore:2.0.4'
compileOnly name: "GriefPrevention-16.17.1"
compileOnly name: "GriefPreventionPlus-13.4"
compileOnly name: "worldguard-bukkit-7.0.5-dist"
compileOnly name: "worldedit-bukkit-7.2.5-dist"
compileOnly name: "IridiumSkyblock-4.0.9.1" // 1.16.5+
compileOnly name: "SuperiorSkyblock2-2024.1" // 1.16.5+
compileOnly name: "PlotSquared-Bukkit-20.03.28-71943e6-796"
compileOnly group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
compileOnly group: 'commons-io', name: 'commons-io', version: '2.6' //Necessary for ReflectionUtils
testImplementation group: 'junit', name: 'junit', version: '4.12'
}