-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
61 lines (53 loc) · 2.47 KB
/
settings.gradle.kts
File metadata and controls
61 lines (53 loc) · 2.47 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
rootProject.name = "kali"
dependencyResolutionManagement {
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://eldonexus.de/repository/maven-public/")
}
}
repositories {
mavenCentral()
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")
}
}
}
mavenLocal()
}
versionCatalogs {
create("libs") {
version("publishdata", "1.4.0")
version("shadow", "9.4.1")
version("bom", "1.6.4")
version("aonyx", "0.7.1")
library("mycelium.bom", "net.onelitefeather", "mycelium-bom").versionRef("bom")
library("aonyx.bom", "net.onelitefeather", "aonyx-bom").versionRef("aonyx")
library("aves", "net.theevilreaper", "aves").withoutVersion()
library("xerus", "net.theevilreaper", "xerus").withoutVersion()
library("guira", "net.onelitefeather", "guira").withoutVersion()
library("minestom", "net.minestom", "minestom").withoutVersion()
library("cyano", "net.onelitefeather", "cyano").withoutVersion()
library("adventure.minimessage", "net.kyori", "adventure-text-minimessage").withoutVersion()
library("junit.api", "org.junit.jupiter", "junit-jupiter-api").withoutVersion()
library("junit.engine", "org.junit.jupiter", "junit-jupiter-engine").withoutVersion()
library("junit.params", "org.junit.jupiter", "junit-jupiter-params").withoutVersion()
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").withoutVersion()
library("mockito.core", "org.mockito", "mockito-core").withoutVersion()
library("mockito.junit", "org.mockito", "mockito-junit-jupiter").withoutVersion()
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
plugin("publishdata", "de.chojo.publishdata").versionRef("publishdata")
}
}
}
include("common")