Search Gradle plugins

Version 1.3.2 (latest)

1.3.2

Created 25 May 2023.

Configure MiniGDX libs to build for the JVM only. The usage is mainly for MiniGDX contributors.

Using the plugins DSL:

plugins {
  id("com.github.minigdx.gradle.plugin.developer.mpp") version "1.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.minigdx:developer-plugin:1.3.2")
  }
}

apply(plugin = "com.github.minigdx.gradle.plugin.developer.mpp")

Using the plugins DSL:

plugins {
  id "com.github.minigdx.gradle.plugin.developer.mpp" version "1.3.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.minigdx:developer-plugin:1.3.2"
  }
}

apply plugin: "com.github.minigdx.gradle.plugin.developer.mpp"

Learn how to apply plugins to subprojects