forked from davidmayr/CraftFlowers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
55 lines (48 loc) · 1.27 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
plugins {
java
id("com.github.johnrengelman.shadow") version "8.1.1"
id("xyz.jpenilla.run-paper") version "2.1.0"
}
group = "at.toastiii.craftflowers"
version = "1.2.3"
repositories {
maven(url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/"))
maven(url = uri("https://maven.enginehub.org/repo/"))
maven(url = uri("https://libraries.minecraft.net"))
}
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("com.mojang:authlib:1.6.25")
compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Bukkit:2.7.0")
implementation("fr.minuskube.inv:smart-invs:1.2.7") {
isTransitive = false
}
}
tasks.withType<ProcessResources> {
filesMatching("plugin.yml") {
expand(mapOf("version" to project.version))
}
}
tasks {
shadowJar {
relocate("fr.minuskube.inv", "cm.ptks.craftflowers.smartinvs")
}
build {
dependsOn(shadowJar)
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
}
tasks {
runServer {
minecraftVersion("1.20.1")
}
}