Search Gradle plugins

Owner: Peyang

This plugin provides support for JAL (Java Assembly Language) in Gradle projects.

https://github.com/PeyaPeyaPeyang/jal-gradle-plugin

Sources: https://github.com/PeyaPeyaPeyang/jal-gradle-plugin

Version 0.1.0 (latest)

Created 24 July 2025.

This plugin provides support for JAL (Java Assembly Language) in Gradle projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("tokyo.peya.langjal") version "0.1.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("tokyo.peya.langjal:tokyo.peya.langjal.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tokyo.peya.langjal")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tokyo.peya.langjal:tokyo.peya.langjal.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "tokyo.peya.langjal")
  • Applying plugins to all subprojects .