-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (44 loc) · 1.2 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.2"
}
}
plugins {
id 'java'
}
group 'me.kixstar.dungeons'
version '0.1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name 'spigot'
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
name 'multiverse'
url 'http://repo.onarandombox.com/content/groups/public'
}
maven {
name 'paper'
url 'https://papermc.io/repo/repository/maven-public/'
}
maven {
name 'worldedit'
url 'https://mvn.intellectualsites.com/content/repositories/releases/'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'io.papermc:paperlib:1.0.3'
compile 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
compile 'com.onarandombox.multiversecore:Multiverse-Core:4.1.1-SNAPSHOT'
compile 'com.intellectualsites.fawe:FAWE-Bukkit:1.0.0'
compile 'org.apache.commons:commons-jexl3:3.1'
}
apply plugin: "com.github.johnrengelman.shadow"
shadowJar {
relocate 'io.papermc.lib', 'me.kixstar.dungeons.paperlib'
}