com.bakdata.sonatype
Owner: bakdata GmbH
Sets up nexusPublish and closeAndReleaseRepository tasks to push to sonatype (and later synced to central)
https://github.com/bakdata/gradle-plugins
Sources: https://github.com/bakdata/gradle-plugins
Version 1.4.1 (latest)
1.4.1
Created 19 July 2024.
Sets up nexusPublish and closeAndReleaseRepository tasks to push to sonatype (and later synced to central)
Using the plugins DSL:
plugins {
id("com.bakdata.sonatype") version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bakdata.gradle:sonatype:1.4.1")
}
}
apply(plugin = "com.bakdata.sonatype")
Using the plugins DSL:
plugins {
id "com.bakdata.sonatype" version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bakdata.gradle:sonatype:1.4.1"
}
}
apply plugin: "com.bakdata.sonatype"