Skip to content

Commit 1cf48bf

Browse files
committed
Update build.gradle.kts
1 parent d23c2f0 commit 1cf48bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "dev.oribuin"
10-
version = "2.0.0"
10+
version = "2.0.0-SNAPSHOT"
1111

1212

1313
java {
@@ -84,8 +84,8 @@ tasks {
8484

8585
repositories {
8686
val version = project.version as String
87-
val mavenUser = project.properties["mavenUser"] as String?
88-
val mavenPassword = project.properties["mavenPassword"] as String?
87+
val mavenUser = project.properties["oribuin_repo_username"] as String?
88+
val mavenPassword = project.properties["oribuin_repo_password"] as String?
8989

9090
if (mavenUser != null && mavenPassword != null) {
9191
maven {
@@ -94,8 +94,8 @@ tasks {
9494
password = mavenPassword
9595
}
9696

97-
val releasesRepoUrl = "https://repo.rosewooddev.io/repository/public-releases/"
98-
val snapshotsRepoUrl = "https://repo.rosewooddev.io/repository/public-snapshots/"
97+
val releasesRepoUrl = "https://repo.oribuin.dev/repository/maven-releases/"
98+
val snapshotsRepoUrl = "https://repo.oribuin.dev/repository/maven-snapshots/"
9999
url = uri(if (version.endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl)
100100
}
101101
}

0 commit comments

Comments
 (0)