Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Version 1.4.4
_2026-01-24_

Nmcp 1.4.4 retries more aggressively when Sonatype is flaky, and makes it more explicit that `publishAllProjectsProbablyBreakingProjectIsolation()` is still OK to use if you don't mind about project isolation.

* Implement retry for snapshots/deployment upload/status check (https://github.com/GradleUp/nmcp/pull/244)
* Move the empty files check to execution (https://github.com/GradleUp/nmcp/pull/243)
* Update deprecation message (https://github.com/GradleUp/nmcp/pull/247)

# Version 1.4.3
_2026-01-02_

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add the `com.gradleup.nmcp.settings` plugin to your `settings.gradle[.kts]` file
```kotlin
// settings.gradle[.kts]
plugins {
id("com.gradleup.nmcp.settings").version("1.4.3")
id("com.gradleup.nmcp.settings").version("1.4.4")
}

nmcpSettings {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/manual-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In the project where you want to upload the deployment (typically your root proj
```kotlin
// build.gradle.kts
plugins {
id("com.gradleup.nmcp.aggregation").version("1.4.3")
id("com.gradleup.nmcp.aggregation").version("1.4.4")
}

nmcpAggregation {
Expand Down
2 changes: 1 addition & 1 deletion librarian.root.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ kdoc.olderVersions=
kdoc.artifactId=kdoc

pom.groupId=com.gradleup.nmcp
pom.version=1.4.4-SNAPSHOT
pom.version=1.4.5-SNAPSHOT
pom.description=New Maven Central Publishing
pom.vcsUrl=https://github.com/gradleup/nmcp
pom.developer=nmcp authors
Expand Down
2 changes: 1 addition & 1 deletion nmcp/testProjects/duplicate-name/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("org.jetbrains.kotlin.jvm").version("2.3.0").apply(false)
id("com.gradleup.nmcp.aggregation").version("1.4.4-SNAPSHOT")
id("com.gradleup.nmcp.aggregation").version("1.4.5-SNAPSHOT")
}

group = "com.example"
Expand Down
2 changes: 1 addition & 1 deletion nmcp/testProjects/empty-aggregation/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins {
id("com.gradleup.nmcp.aggregation").version("1.4.4-SNAPSHOT")
id("com.gradleup.nmcp.aggregation").version("1.4.5-SNAPSHOT")
}
5 changes: 4 additions & 1 deletion scripts/update-repo.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ import com.gradleup.librarian.cli.updateRepo
updateRepo(
args,
setVersion = {
file("nmcp/testProjec/duplicate-name/build.gradle.kts") {
file("nmcp/testProjects/duplicate-name/build.gradle.kts") {
replacePluginVersion("com.gradleup.nmcp.aggregation")
}
file("nmcp/testProjects/empty-aggregation/build.gradle.kts") {
replacePluginVersion("com.gradleup.nmcp.aggregation")
}
},
Expand Down