-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (28 loc) · 1.21 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.21'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'cn.cubegarden'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url 'https://papermc.io/repo/repository/maven-public/' }
maven { url 'https://repo.codemc.io/repository/maven-snapshots/'}
maven { url 'https://repo.onarandombox.com/content/groups/public/' }
maven { url 'https://repo.minebench.de/' }
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'net.wesjd:anvilgui:1.5.1-SNAPSHOT'
implementation 'de.themoep:inventorygui:1.5-SNAPSHOT'
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
compileOnly 'com.onarandombox.multiversecore:Multiverse-Core:4.2.2'
compileOnly 'com.onarandombox.multiverseinventories:Multiverse-Inventories:4.2.2'
compileOnly 'com.onarandombox.multiversenetherportals:Multiverse-NetherPortals:4.2.2-SNAPSHOT'
}
// 防止TabooLib删除Kotlin库导致在Kotlin库版本不一致时无法运行
shadowJar {
relocate 'kotlin', 'libs.kotlin'
}