org.argus.jawa
Owner: Fengguo Wei
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)
1.0.7
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'
}
Using the plugins DSL:
plugins {
id("org.argus.jawa") version "1.0.7"
}
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.7")
}
}
apply(plugin = "org.argus.jawa")
Using the plugins DSL:
plugins {
id "org.argus.jawa" version "1.0.7"
}
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.7"
}
}
apply plugin: "org.argus.jawa"