-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
64 lines (52 loc) · 1.41 KB
/
build.gradle.kts
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
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
`java-library`
`maven-publish`
id("io.github.goooler.shadow") version "8.1.8"
}
repositories {
mavenLocal()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://oss.sonatype.org/content/groups/public/")
maven("https://repo.maven.apache.org/maven2/")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://repo.oraxen.com/releases")
maven("https://jitpack.io")
}
dependencies {
compileOnlyApi(libs.paper.api)
compileOnlyApi(libs.commandapi)
compileOnlyApi(libs.placeholder.api)
compileOnlyApi(libs.oraxen)
compileOnlyApi(libs.betterhud)
api(libs.inventory.framework)
api(libs.configurate.core)
api(libs.configurate.yml)
}
group = "de.castcrafter"
version = "1.0-SNAPSHOT"
tasks {
shadowJar {
relocate("com.github.stefvanschie.inventoryframework", "de.castcrafter.lootdrop.inventoryframework")
relocate("org.spongepowered", "de.castcrafter.lootdrop.spongepowered")
}
}
description = "loot_drop"
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}
tasks.withType<JavaCompile>() {
options.encoding = "UTF-8"
}
tasks.withType<Javadoc>() {
options.encoding = "UTF-8"
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}