Search Gradle plugins

io.github.dexman545.outlet

A plugin to aid in the development and publishing of Minecraft mods!

https://github.com/dexman545/Outlet

Sources: https://github.com/dexman545/Outlet

Version 1.7.0-alpha.1 (latest)

1.7.0-alpha.1

Created 10 March 2024.

A plugin to aid in the development and publishing of Minecraft mods!

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.dexman545.outlet") version "1.7.0-alpha.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.dexman545.outlet:Outlet:1.7.0-alpha.1")
      }
    }
    
    apply(plugin = "io.github.dexman545.outlet")
  • Applying plugins to all subprojects .