Search Gradle plugins

Version 1.3.1

Created 09 August 2020.

Plugin to create Texture Packs, Bitmap Fonts, Nine patches and Distance Fields for use with LibGDX

Using the plugins DSL:

plugins {
  id("com.github.blueboxware.gdx") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.blueboxware:LibGDXGradlePlugin:1.3.1")
  }
}

apply(plugin = "com.github.blueboxware.gdx")

Using the plugins DSL:

plugins {
  id "com.github.blueboxware.gdx" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.blueboxware:LibGDXGradlePlugin:1.3.1"
  }
}

apply plugin: "com.github.blueboxware.gdx"

Learn how to apply plugins to subprojects