com.github.ngyewch.gradle-fjage-plugin
Owner: Nick Ng
Plugin for Gradle-based fjage development.
https://github.com/ngyewch/gradle-fjage-plugin
Sources: https://github.com/ngyewch/gradle-fjage-plugin.git
Version 0.4.0 (latest)
0.4.0
Created 24 February 2020.
Plugin for Gradle-based fjage development.
Using the plugins DSL:
plugins {
id("com.github.ngyewch.gradle-fjage-plugin") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ngyewch.gradle-fjage-plugin:gradle-fjage-plugin:0.4.0")
}
}
apply(plugin = "com.github.ngyewch.gradle-fjage-plugin")
Using the plugins DSL:
plugins {
id "com.github.ngyewch.gradle-fjage-plugin" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ngyewch.gradle-fjage-plugin:gradle-fjage-plugin:0.4.0"
}
}
apply plugin: "com.github.ngyewch.gradle-fjage-plugin"