diff options
author | Rami Potinkara <[email protected]> | 2025-05-27 14:49:12 +0300 |
---|---|---|
committer | Rami Potinkara <[email protected]> | 2025-05-27 17:06:20 +0300 |
commit | e0c7255df00ecc86c8d56d1cf2a19c6315610a47 (patch) | |
tree | 628d0c8fedc1ff0e3712ded0ed49aee2b72966f4 | |
parent | 74f6de1f57204956e08636362b8d08ddd832173c (diff) |
This patch updates com.gradleup.nmcp to version 0.1.4.
The reason is that version 0.0.8 did not work anymore
with QtGP 1.3.
Fixes: QTTA-373
Pick-to: 1.3
Change-Id: If5e2d2957438d8cbf1e4e62361090f8bdc7bd1b3
Reviewed-by: Assam Boudjelthia <[email protected]>
Reviewed-by: Rami Potinkara <[email protected]>
Reviewed-by: Nikunj Arora <[email protected]>
-rw-r--r-- | build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index 3280ce6..d408dcf 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'java-gradle-plugin' id 'maven-publish' id 'signing' - id 'com.gradleup.nmcp' version '0.0.8' + id 'com.gradleup.nmcp' version '0.1.4' } group = 'org.qtproject.qt.gradleplugin' @@ -113,11 +113,11 @@ signing { } nmcp { - publishAllProjectsProbablyBreakingProjectIsolation { + centralPortal { username = project.publishingUser password = project.publishingPass // USER_MANAGED publish manually from the portal (recommended) // AUTOMATIC publish automatically (alternative) - publicationType = "USER_MANAGED" + publishingType = "USER_MANAGED" } } |