We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1afe3a commit 1aca756Copy full SHA for 1aca756
build.gradle.kts
@@ -24,6 +24,20 @@ dependencies {
24
25
26
publishing {
27
+ repositories {
28
+ maven {
29
+ name = "OneLiteFeatherRepository"
30
+ url = if (project.version.toString().contains("SNAPSHOT")) {
31
+ uri("https://repo.onelitefeather.dev/onelitefeather-snapshots")
32
+ } else {
33
+ uri("https://repo.onelitefeather.dev/onelitefeather-releases")
34
+ }
35
+ credentials(PasswordCredentials::class)
36
+ authentication {
37
+ create<BasicAuthentication>("basic")
38
39
40
41
publications {
42
create<MavenPublication>("maven") {
43
pom {
0 commit comments