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.8.1

Created 25 November 2024.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("me.modmuss50.mod-publish-plugin:me.modmuss50.mod-publish-plugin.gradle.plugin:0.8.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("me.modmuss50.mod-publish-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.modmuss50.mod-publish-plugin:me.modmuss50.mod-publish-plugin.gradle.plugin:0.8.1")
      }
    }
    
    apply(plugin = "me.modmuss50.mod-publish-plugin")
  • Applying plugins to all subprojects .