Skip to content

Commit

Permalink
chore: renaming sonatype project config
Browse files Browse the repository at this point in the history
  • Loading branch information
nemo83 committed Jan 17, 2024
1 parent 3d2cd23 commit 41b9413
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions publish-common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if (!name.equalsIgnoreCase("components")) {
artifactId 'ledger-sync-' + project.name

pom {
url = 'https://github.com/cardanofoundation/cf-ledger-sync'
url = 'https://github.com/cardano-foundation/cf-ledger-sync'
licenses {
license {
name = 'Apache License 2.0'
Expand All @@ -32,9 +32,9 @@ if (!name.equalsIgnoreCase("components")) {
}
}
scm {
connection = 'scm:git:git://github.com/cardanofoundation/cf-ledger-sync'
developerConnection = 'scm:git:ssh://git@github.com/cardanofoundation/cf-ledger-sync'
url = 'https://github.com/cardanofoundation/cf-ledger-sync'
connection = 'scm:git:git://github.com/cardano-foundation/cf-ledger-sync.git'
developerConnection = 'scm:git:git://github.com/cardano-foundation/cf-ledger-sync'
url = 'https://github.com/cardano-foundation/cf-ledger-sync'
}
}
}
Expand All @@ -47,8 +47,8 @@ if (!name.equalsIgnoreCase("components")) {
maven {
// def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2"
// def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/"
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2"
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username ossrhUsername
Expand Down

0 comments on commit 41b9413

Please sign in to comment.