Search Gradle plugins

com.github.minigdx.js

Configure your gradle project for creating a minigdx game that target the web platform.

https://github.com/minigdx/minigdx-gradle-plugin

Sources: https://github.com/minigdx/minigdx-gradle-plugin

Version 1.0.0 (latest)

Created 08 May 2021.

Configure your gradle project for creating a minigdx game that target the web platform.

Using the plugins DSL:

plugins {
  id("com.github.minigdx.js") version "1.0.0"
}

Using legacy plugin application:

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

apply(plugin = "com.github.minigdx.js")

Using the plugins DSL:

plugins {
  id "com.github.minigdx.js" version "1.0.0"
}

Using legacy plugin application:

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

apply plugin: "com.github.minigdx.js"

Learn how to apply plugins to subprojects