Search Gradle plugins

me.modmuss50.mod-publish-plugin

The Mod Publish Plugin is a plugin for the Gradle build system to help upload artifacts to a range of common destinations.

https://github.com/modmuss50/mod-publish-plugin

Sources: https://github.com/modmuss50/mod-publish-plugin

Version 0.5.1 (latest)

Created 17 February 2024.

The Mod Publish Plugin is a plugin for the Gradle build system to help upload artifacts to a range of common destinations.

Using the plugins DSL:

plugins {
  id("me.modmuss50.mod-publish-plugin") version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.modmuss50:mod-publish-plugin:0.5.1")
  }
}

apply(plugin = "me.modmuss50.mod-publish-plugin")

Using the plugins DSL:

plugins {
  id "me.modmuss50.mod-publish-plugin" version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.modmuss50:mod-publish-plugin:0.5.1"
  }
}

apply plugin: "me.modmuss50.mod-publish-plugin"

Learn how to apply plugins to subprojects