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.6

Created 19 October 2016.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.argus.jawa")

Using the plugins DSL:

plugins {
  id "org.argus.jawa" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.arguslab:gradle-jawa-plugin:1.0.6"
  }
}

apply plugin: "org.argus.jawa"

Learn how to apply plugins to subprojects