Search Gradle plugins

Version 1.2.0 (latest)

1.2.0

Created 05 November 2024.

a gradle plugin , all in one publishing

Using the plugins DSL:

plugins {
  id("tech.medivh.plugin.publisher") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.medivh:medivh-publisher:1.2.0")
  }
}

apply(plugin = "tech.medivh.plugin.publisher")

Using the plugins DSL:

plugins {
  id "tech.medivh.plugin.publisher" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.medivh:medivh-publisher:1.2.0"
  }
}

apply plugin: "tech.medivh.plugin.publisher"

Learn how to apply plugins to subprojects