We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cbea6b commit c0b1655Copy full SHA for c0b1655
src/main/kotlin/nmcp/CentralPortalOptions.kt
@@ -20,7 +20,7 @@ abstract class CentralPortalOptions {
20
* - "AUTOMATIC": the deployment is automatically published.
21
* - "USER_MANAGED": the deployment is validated but not published. It must be published manually from the Central Portal UI.
22
*
23
- * Default: USER_MANAGED
+ * Default: AUTOMATIC
24
*/
25
abstract val publishingType: Property<String>
26
src/main/kotlin/nmcp/internal/task/publishRelease.kt
@@ -54,7 +54,7 @@ fun publishRelease(
54
)
55
.build()
56
57
- val publishingType = publishingType ?: "USER_MANAGED"
+ val publishingType = publishingType ?: "AUTOMATIC"
58
59
val baseUrl = baseUrl ?: "https://central.sonatype.com/"
60
0 commit comments