Skip to content

Commit

Permalink
Added molia maven repo
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHua269 committed Aug 12, 2024
1 parent 9b3a981 commit d228424
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,22 @@ allprojects {
credentials.password = System.getenv("GITHUB_TOKEN")
}

maven {
name = "moliaMavenRepo"
url = uri("https://maven.moliatopia.icu/repository/maven-releases/")

credentials.username = System.getenv("MAVEN_REPO_USER")
credentials.password = System.getenv("MAVEN_REPO_PASSWORD")
}

publications {
register<MavenPublication>("gpr") {
from(components["java"])
}
}
}
}
}
}

publishing {
if (project.hasProperty("publishDevBundle")) {
Expand Down

0 comments on commit d228424

Please sign in to comment.