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.1.0
0.1.0
Created 12 June 2016.
A Gradle Plugin for the Pony programming language
Using the plugins DSL:
plugins {
id("com.athaydes.pony") version "0.1.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.1.0")
}
}
apply(plugin = "com.athaydes.pony")
Using the plugins DSL:
plugins {
id "com.athaydes.pony" version "0.1.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.1.0"
}
}
apply plugin: "com.athaydes.pony"