Search Gradle plugins

Version 0.0.1

0.0.1

Created 15 October 2024.

a gradle plugin , all in one publishing

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects