-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
33 lines (28 loc) · 844 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'me.kaliber'
version '1.4.0'
repositories {
mavenCentral()
maven {
url 'https://repo.extendedclip.com/content/repositories/placeholderapi'
}
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
}
dependencies {
implementation ('org.jetbrains.kotlin:kotlin-stdlib:1.6.0') {
exclude group: 'org.jetbrains'
}
compileOnly 'io.papermc.paper:paper-api:1.18.1-R0.1-SNAPSHOT'
compileOnly 'me.clip:placeholderapi:2.11.1'
}
shadowJar {
archiveFileName = 'Expansion-RNG.jar'
relocate 'kotlin', 'me.kaliber.expansions.rng.libs.kotlin'
exclude 'META-INF/versions/9/module-info.class' // papi classloading bad - java 8 support
minimize()
}