-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
73 lines (58 loc) · 1.76 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
73 lines (58 loc) · 1.76 KB
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
65
66
67
68
69
70
71
72
73
plugins {
`java-library`
`maven-publish`
id("io.papermc.paperweight.userdev") version "2.0.0-beta.21"
}
repositories {
mavenCentral()
maven {
url = uri("https://rutgerkok.nl/repo")
}
maven {
url = uri("https://repo.codemc.org/repository/maven-public/")
}
maven {
url = uri("https://ci.mg-dev.eu/plugin/repository/everything")
}
maven {
url = uri("https://repo.onarandombox.com/content/groups/public/")
}
maven {
url = uri("https://repo.codemc.io/repository/nms/")
}
maven {
url = uri("https://repo.maven.apache.org/maven2/")
}
}
dependencies {
testImplementation("junit:junit:4.13.1")
paperweight.paperDevBundle("26.2-rc-2.build.7-alpha")
compileOnly("com.bergerkiller.bukkit:MyWorlds:1.12-v2") {
exclude(group="org.spigotmc") // Don't let Spigot API overwrite Paper
}
compileOnly("com.griefcraft:LWC:4.3.2")
compileOnly("org.mvplugins.multiverse.core:multiverse-core:5.0.2")
compileOnly("org.mvplugins.multiverse.inventories:multiverse-inventories:5.0.2")
compileOnly("me.drayshak.worldinventories:WorldInventories:1.7.0")
compileOnly("nl.rutgerkok:blocklocker:1.9.2")
compileOnly("org.yi.acru.bukkit:Lockette:1.7.12")
compileOnly("uk.co.tggl.pluckerpluck.multiinv:MultiInv:3.3.0")
}
group = "nl.rutgerkok.betterenderchest"
version = "2.7.6"
description = "BetterEnderChest"
java.sourceCompatibility = JavaVersion.VERSION_25
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}
tasks.withType<JavaCompile>() {
options.encoding = "UTF-8"
}
tasks.withType<Javadoc>() {
options.encoding = "UTF-8"
}
tasks.processResources {
expand("version" to project.version)
}