Skip to content

Commit

Permalink
Fix syntax of Maven POM SCM connections URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
sschuberth committed Oct 15, 2024
1 parent 74f9198 commit b356809
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion projects/gradle/publish-android.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ configure<PublishingExtension> {
}
scm {
url.set("https://github.com/InsertKoinIO/koin")
connection.set("https://github.com/InsertKoinIO/koin.git")
connection.set("scm:git:https://github.com/InsertKoinIO/koin.git")
}
developers {
developer {
Expand Down
2 changes: 1 addition & 1 deletion projects/gradle/publish-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ configure<PublishingExtension> {
}
scm {
url.set("https://github.com/InsertKoinIO/koin")
connection.set("https://github.com/InsertKoinIO/koin.git")
connection.set("scm:git:https://github.com/InsertKoinIO/koin.git")
}
developers {
developer {
Expand Down
2 changes: 1 addition & 1 deletion projects/gradle/publish-pom.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ configure<PublishingExtension> {
}
scm {
url.set("https://github.com/InsertKoinIO/koin")
connection.set("https://github.com/InsertKoinIO/koin.git")
connection.set("scm:git:https://github.com/InsertKoinIO/koin.git")
}
developers {
developer {
Expand Down
2 changes: 1 addition & 1 deletion projects/gradle/publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ configure<PublishingExtension> {
}
scm {
url.set("https://github.com/InsertKoinIO/koin")
connection.set("https://github.com/InsertKoinIO/koin.git")
connection.set("scm:git:https://github.com/InsertKoinIO/koin.git")
}
developers {
developer {
Expand Down

0 comments on commit b356809

Please sign in to comment.