diff --git a/CHANGELOG.md b/CHANGELOG.md index e44c1f5..cd39cb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,23 @@ -## Split the plugin in 2 separate plugins: + +# Version 0.1.1 + +Technical release to remove a dependency on the GradleUp snapshots repository. + +This release is also the first release of `Nmcp` made using `Nmcp`. + +# Version 0.1.0 + +## Split the plugin in two separate plugins: - `com.gradleup.nmcp` creates a `zip${publicationName.capitalized()}Publication` and `publish${publicationName.capitalized()}PublicationToCentralPortal` task for each publication - `publish${publicationName.capitalized()}PublicationToCentralPortal` can be used to publish an individual publication to the central portal. If using this, you need to configure the `centralPortal {}` block. - The output of `zip${publicationName.capitalized()}Publication` is registered as an outgoing artifact so that the aggregation plugin can collect the files from all projects. - `com.gradleup.nmcp.aggregation` can aggregate all zips from several projects and upload them in a single deployment to the central portal. +See the README for more instructions + ## Other changes: - The default `publicationType` is now `"AUTOMATIC"`, make sure to set it to `"USER_MANAGED"` if you want to manually confirm releases. - `NmcpSpec.endpoint` is replaced by `NmcpSpec.baseUrl`. -- `NmcpSpec.publicationType` is renamed `NmcpSpec.publishingType`. \ No newline at end of file +- `NmcpSpec.publicationType` is renamed `NmcpSpec.publishingType`. diff --git a/README.md b/README.md index 66fb1f0..2bb35af 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ You can be 100% compatible by adding the plugin to each module you want to publi ```kotlin //root/module/build.gradle.kts plugins { - id("com.gradleup.nmcp").version("0.1.0") + id("com.gradleup.nmcp").version("0.1.1") } ``` @@ -62,7 +62,7 @@ And then list all modules in your root project: ```kotlin //root/build.gradle.kts plugins { - id("com.gradleup.nmcp.aggregation").version("0.1.0") + id("com.gradleup.nmcp.aggregation").version("0.1.1") } nmcp { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2751399..588d920 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -14,4 +14,4 @@ gradle-min = "dev.gradleplugins:gradle-api:8.0" kgp = { id = "org.jetbrains.kotlin.jvm", version.ref = "kgp" } ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } ggp = { id = "com.gradleup.gratatouille", version = "0.0.7" } -nmcp = { id = "com.gradleup.nmcp", version = "0.1.0" } +nmcp = { id = "com.gradleup.nmcp", version = "0.1.1" } diff --git a/settings.gradle.kts b/settings.gradle.kts index d14d924..6a132e1 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -5,7 +5,6 @@ pluginManagement { ).forEach { it.apply { mavenCentral() - maven("https://storage.googleapis.com/gradleup/m2") } } }