Skip to content

Commit

Permalink
Merge pull request #2006 from sschuberth/scm-connection-syntax
Browse files Browse the repository at this point in the history
Fix syntax of Maven POM SCM connections URLs
  • Loading branch information
arnaudgiuliani authored Nov 15, 2024
2 parents 6e243f4 + b356809 commit 50b9e24
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 50b9e24

Please sign in to comment.