Search Gradle plugins

Version 0.4.14 (latest)

Created 02 December 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("org.xtend.xtend-base") version "0.4.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.xtend:xtend-gradle-plugin:0.4.14")
  }
}

apply(plugin = "org.xtend.xtend-base")

Using the plugins DSL:

plugins {
  id "org.xtend.xtend-base" version "0.4.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.xtend:xtend-gradle-plugin:0.4.14"
  }
}

apply plugin: "org.xtend.xtend-base"

Learn how to apply plugins to subprojects