Search Gradle plugins

Version 0.2.0 (latest)

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"

Learn how to apply plugins to subprojects