Search Gradle plugins

com.github.masterzach32.artifactory

Helps configure multi-target minecraft mods. Supports fabric and forge out of the box.

https://github.com/Masterzach32/artifactory/

Sources: https://github.com/Masterzach32/artifactory/

Version 0.4.0 (latest)

Created 02 September 2021.

Helps configure multi-target minecraft mods. Supports fabric and forge out of the box.

Using the plugins DSL:

plugins {
  id("com.github.masterzach32.artifactory") version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.masterzach32:artifactory:0.4.0")
  }
}

apply(plugin = "com.github.masterzach32.artifactory")

Using the plugins DSL:

plugins {
  id "com.github.masterzach32.artifactory" version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.masterzach32:artifactory:0.4.0"
  }
}

apply plugin: "com.github.masterzach32.artifactory"

Learn how to apply plugins to subprojects