-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
73 lines (66 loc) · 3.33 KB
/
settings.gradle.kts
File metadata and controls
73 lines (66 loc) · 3.33 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
rootProject.name = "Cygnus"
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://central.sonatype.com/repository/maven-snapshots/")
maven("https://repository.derklaro.dev/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")
}
}
}
}
versionCatalogs {
create("libs") {
version("shadow", "9.4.1")
version("cloudnet", "4.0.0-RC16")
version("aonyx", "0.7.1")
version("cyclonedx", "3.2.4")
version("pica", "0.0.1")
library("aonyx.bom", "net.onelitefeather", "aonyx-bom").versionRef("aonyx")
library("minestom", "net.minestom", "minestom").withoutVersion()
library("adventure", "net.kyori", "adventure-text-minimessage").withoutVersion()
library("cyano", "net.onelitefeather", "cyano").withoutVersion()
library("guira", "net.onelitefeather", "guira").withoutVersion()
library("junit.api", "org.junit.jupiter", "junit-jupiter-api").withoutVersion()
library("junit.engine", "org.junit.jupiter", "junit-jupiter-engine").withoutVersion()
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").withoutVersion()
library("junit.params", "org.junit.jupiter", "junit-jupiter-params").withoutVersion()
library("aves", "net.theevilreaper", "aves").version("1.13.1")
library("xerus", "net.theevilreaper", "xerus").withoutVersion()
library("pica", "net.onelitefeather", "pica").versionRef("pica")
library("canis", "com.github.theEvilReaper", "Canis").version("master-SNAPSHOT")
library("cloudnet-bom", "eu.cloudnetservice.cloudnet", "bom").versionRef("cloudnet")
library("cloudnet-bridge", "eu.cloudnetservice.cloudnet", "bridge-api").withoutVersion()
library("cloudnet-bridge-impl", "eu.cloudnetservice.cloudnet", "bridge-impl").withoutVersion()
library("cloudnet-driver-impl", "eu.cloudnetservice.cloudnet", "driver-impl").withoutVersion()
library("cloudnet-platform-inject", "eu.cloudnetservice.cloudnet", "platform-inject-api").withoutVersion()
library("cloudnet-jvm-wrapper", "eu.cloudnetservice.cloudnet", "wrapper-jvm-api").withoutVersion()
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
bundle(
"cloudnet",
listOf(
"cloudnet-bridge",
"cloudnet-bridge-impl",
"cloudnet-driver-impl",
"cloudnet-platform-inject",
"cloudnet-jvm-wrapper"
)
)
plugin("cyclonedx", "org.cyclonedx.bom").versionRef("cyclonedx")
}
}
}
include("common")
include("setup")
include("game")