Search Gradle plugins

Version 1.7.0-alpha.1 (latest)

Created 10 March 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.dexman545.outlet:Outlet:1.7.0-alpha.1")
  }
}

apply(plugin = "io.github.dexman545.outlet")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.dexman545.outlet:Outlet:1.7.0-alpha.1"
  }
}

apply plugin: "io.github.dexman545.outlet"

Learn how to apply plugins to subprojects