Search Gradle plugins

Version 1.5 (latest)

Created 21 February 2024.

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.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects