com.dorkbox.GradlePublish
Owner: Dorkbox LLC
Gradle Plugin to publish projects to the sonatype repository
https://git.dorkbox.com/dorkbox/GradlePublish
Sources: https://git.dorkbox.com/dorkbox/GradlePublish
Version 1.22 (latest)
1.22
Created 27 November 2023.
Gradle Plugin to publish projects to the sonatype repository
Using the plugins DSL:
plugins {
id("com.dorkbox.GradlePublish") version "1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dorkbox:GradlePublish:1.22")
}
}
apply(plugin = "com.dorkbox.GradlePublish")
Using the plugins DSL:
plugins {
id "com.dorkbox.GradlePublish" version "1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dorkbox:GradlePublish:1.22"
}
}
apply plugin: "com.dorkbox.GradlePublish"