Skip to content

Commit 4ee2a08

Browse files
committed
Add cyano dependency
1 parent 7139735 commit 4ee2a08

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ dependencies {
1414
constraints {
1515
api(libs.minestom)
1616
api(libs.adventure.text.minimessage)
17+
api(libs.cyano)
1718
api(libs.junit.jupiter.api)
1819
api(libs.junit.jupiter.engine)
1920
api(libs.mockito.core)

settings.gradle.kts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,32 @@ rootProject.name = "mycelium-bom"
33
dependencyResolutionManagement {
44
repositories {
55
mavenCentral()
6+
maven {
7+
name = "OneLiteFeatherRepository"
8+
url = uri("https://repo.onelitefeather.dev/onelitefeather")
9+
if (System.getenv("CI") != null) {
10+
credentials {
11+
username = System.getenv("ONELITEFEATHER_MAVEN_USERNAME")
12+
password = System.getenv("ONELITEFEATHER_MAVEN_PASSWORD")
13+
}
14+
} else {
15+
credentials(PasswordCredentials::class)
16+
authentication {
17+
create<BasicAuthentication>("basic")
18+
}
19+
}
20+
}
621
}
722
versionCatalogs {
823
create("libs") {
924
version("minestom", "a1d1920a04")
1025
version("adventure", "4.20.0")
1126
version("junit", "5.12.2")
1227
version("mockito", "5.17.0")
28+
version("cyano", "0.1.0")
1329

1430
library("minestom","net.minestom", "minestom-snapshots").versionRef("minestom")
31+
library("cyano", "net.onelitefeather.cyano", "cyano").versionRef("cyano")
1532
library("adventure-text-minimessage", "net.kyori", "adventure-text-minimessage").versionRef("adventure")
1633
library("junit-jupiter-api", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit")
1734
library("junit-jupiter-engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef("junit")

0 commit comments

Comments
 (0)