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

Created 26 August 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.3.6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects