Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ signing {
}

group = "io.iworkflow"
version = "2.11.0"
version = "2.11.1"

nexusPublishing {
repositories {
sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
// username = project.property('myNexusUsername')
// password = project.property('myNexusPassword')
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
Comment on lines +182 to +183
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀 why are we changing these?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We were deploying through OSSRH and as of Jun 30th it's been deprecated. That's why I received 400s, not super intuitive.

Plugin docs
Sonatype docs

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like the plugin we are using is choosing to use the staging api rather then using the new central repo. Hopefully it'll use the new central repo at some point. docs

// username = project.property('myNexusUsername')
// password = project.property('myNexusPassword')
}
}
}
Loading