Search Gradle plugins

org.argus.jawa

Jawa language compiler for Gradle. Built with Gradle 2.13. Projects applying this plugin require a compile-time dependency on the jawa-compiler library. Please include this in the depencencies closure: dependencies { compile group: 'com.github.arguslab', name: 'jawa-compiler_2.11', version: '1.0.2' }

https://github.com/arguslab/gradle-jawa-plugin

Sources: https://github.com/arguslab/gradle-jawa-plugin.git

Version 1.0.7 (latest)

Created 24 October 2016.

Jawa language compiler for Gradle. Built with Gradle 2.14.1. Projects applying this plugin require a compile-time dependency on the jawa-compiler library. Please include this in the depencencies closure: dependencies { compile group: 'com.github.arguslab', name: 'jawa-compiler_2.11', version: '1.0.7' }

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.argus.jawa") version "1.0.7"
}

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("org.argus.jawa:org.argus.jawa.gradle.plugin:1.0.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.argus.jawa")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.argus.jawa:org.argus.jawa.gradle.plugin:1.0.7")
      }
    }
    
    apply(plugin = "org.argus.jawa")
  • Applying plugins to all subprojects .