-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (41 loc) · 994 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
47
48
49
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.2"
}
}
plugins {
id 'java'
}
group 'me.kixstar.kixutilities'
version '0.1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
name 'spigot'
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
name 'paper'
url 'https://papermc.io/repo/repository/maven-public/'
}
}
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'
compileOnly 'com.rabbitmq:amqp-client:5.9.0'
}
jar {
manifest {
attributes(
"Class-Path": "../lib/slf4j-api.jar ../lib/rabbitmq-client.jar"
)
}
}
apply plugin: "com.github.johnrengelman.shadow"
shadowJar {
relocate 'io.papermc.lib', 'me.kixstar.eco.paperlib'
}