-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
55 lines (48 loc) · 2.46 KB
/
settings.gradle.kts
File metadata and controls
55 lines (48 loc) · 2.46 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
rootProject.name = "Labyrinth"
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("paper", "1.21.11-R0.1-SNAPSHOT")
version("plugin.yml", "0.6.0")
version("run-paper", "3.0.2")
version("publishdata", "1.4.0")
version("shadow", "9.3.2")
version("junit-bom", "6.0.3")
version("mockbukit", "4.107.0")
plugin("plugin.yml", "net.minecrell.plugin-yml.paper").versionRef("plugin.yml")
plugin("run.paper", "xyz.jpenilla.run-paper").versionRef("run-paper")
plugin("publishdata", "de.chojo.publishdata").versionRef("publishdata")
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
library("cloudPaper", "org.incendo", "cloud-paper").version("2.0.0-SNAPSHOT")
library("cloudAnnotations", "org.incendo", "cloud-annotations").version("2.0.0")
library("cloudBukkit", "org.incendo", "cloud-bukkit").version("2.0.0-SNAPSHOT")
library("adventurePlatformBukkit", "net.kyori", "adventure-platform-bukkit").version("4.4.1")
library("paper", "io.papermc.paper", "paper-api").versionRef("paper")
library("junit-bom", "org.junit", "junit-bom").versionRef("junit-bom")
library("junit-jupiter", "org.junit.jupiter", "junit-jupiter").withoutVersion()
library("junit-jupiter-engine", "org.junit.jupiter", "junit-jupiter-engine").withoutVersion()
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").withoutVersion()
library("mockbukkit", "org.mockbukkit.mockbukkit", "mockbukkit-v1.21").versionRef("mockbukit")
}
}
repositories {
mavenCentral()
maven("https://central.sonatype.com/repository/maven-snapshots/")
maven {
name = "OneLiteFeatherRepository"
url = uri("https://repo.onelitefeather.dev/onelitefeather")
if (System.getenv("CI") != null) {
credentials {
username = System.getenv("ONELITEFEATHER_MAVEN_USERNAME")
password = System.getenv("ONELITEFEATHER_MAVEN_PASSWORD")
}
} else {
credentials(PasswordCredentials::class)
authentication {
create<BasicAuthentication>("basic")
}
}
}
maven("https://repo.papermc.io/repository/maven-public/")
}
}