generated from MineInAbyss/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
44 lines (37 loc) · 1017 Bytes
/
settings.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
rootProject.name = "chatty"
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven("https://repo.mineinabyss.com/releases")
maven("https://repo.mineinabyss.com/snapshots")
maven("https://repo.papermc.io/repository/maven-public/")
mavenLocal()
google()
}
val idofrontVersion: String by settings
resolutionStrategy {
eachPlugin {
if (requested.id.id.startsWith("com.mineinabyss.conventions"))
useVersion(idofrontVersion)
}
}
}
dependencyResolutionManagement {
val idofrontVersion: String by settings
repositories {
mavenCentral()
maven("https://repo.mineinabyss.com/releases")
maven("https://repo.mineinabyss.com/snapshots")
mavenLocal()
}
versionCatalogs {
create("idofrontLibs") {
from("com.mineinabyss:catalog:$idofrontVersion")
}
}
}
include(
"chatty-paper",
"chatty-velocity"
)