-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
27 lines (24 loc) · 774 Bytes
/
settings.gradle.kts
File metadata and controls
27 lines (24 loc) · 774 Bytes
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
rootProject.name = "gridselector"
include("core")
include("latest")
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven {
name = "EldoNexus"
url = uri("https://eldonexus.de/repository/maven-public/")
}
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
plugin("publishdata", "de.chojo.publishdata").version("1.4.0")
plugin("licenser", "org.cadixdev.licenser").version("0.6.1")
plugin("shadow", "io.github.goooler.shadow").version("8.1.8")
plugin("pluginyml", "net.minecrell.plugin-yml.bukkit").version("0.6.0")
plugin("runserver", "xyz.jpenilla.run-paper").version("2.3.1")
}
}
}