com.athaydes.pony
Owner: Renato Athaydes
A Gradle Plugin for the Pony programming language
https://github.com/renatoathaydes/pony-gradle-plugin
Sources: https://github.com/renatoathaydes/pony-gradle-plugin
Version 0.2.0 (latest)
0.2.0
Created 26 March 2017.
A Gradle Plugin for the Pony programming language
Using the plugins DSL:
plugins {
id("com.athaydes.pony") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.athaydes.pony.gradle:pony-gradle-plugin:0.2.0")
}
}
apply(plugin = "com.athaydes.pony")
Using the plugins DSL:
plugins {
id "com.athaydes.pony" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.athaydes.pony.gradle:pony-gradle-plugin:0.2.0"
}
}
apply plugin: "com.athaydes.pony"