File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ pipeline {
106106 // )
107107 ]) {
108108 withGradle {
109- sh ' ./gradlew publishAllPublicationsToSoloStudiosReleasesRepository'
109+ sh ' ./gradlew publish'
110+ // sh './gradlew publishAllPublicationsToSoloStudiosReleasesRepository'
110111 // sh './gradlew publishAllPublicationsToSonatypeRepository'
111112 // sh './gradlew publishAllPublicationsToCodeMCRepository'
112113 }
Original file line number Diff line number Diff line change @@ -16,16 +16,17 @@ fun Project.configurePublishing() {
1616 }
1717
1818 repositories {
19- val mavenUrl = " https://repo.codemc.io/repository/maven- releases/"
19+ val mavenUrl = " https://maven.solo-studios.ca/ releases/"
2020 // val mavenSnapshotUrl = "https://repo.codemc.io/repository/maven-snapshots/"
2121
2222 maven(mavenUrl) {
23- val mavenUsername: String? by project
24- val mavenPassword: String? by project
25- if (mavenUsername != null && mavenPassword != null ) {
23+ val SoloStudiosReleasesUsername : String? by project
24+ val SoloStudiosReleasesPassword : String? by project
25+
26+ if (SoloStudiosReleasesUsername != null && SoloStudiosReleasesPassword != null ) {
2627 credentials {
27- username = mavenUsername
28- password = mavenPassword
28+ username = SoloStudiosReleasesUsername
29+ password = SoloStudiosReleasesPassword
2930 }
3031 }
3132 }
You can’t perform that action at this time.
0 commit comments