Search Gradle plugins

Version 1.0.0-RC4 (latest)

Created 16 December 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("org.xtext.idea-aggregator") version "1.0.0-RC4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.xtext:xtext-idea-gradle-plugin:1.0.0-RC4")
  }
}

apply(plugin = "org.xtext.idea-aggregator")

Using the plugins DSL:

plugins {
  id "org.xtext.idea-aggregator" version "1.0.0-RC4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.xtext:xtext-idea-gradle-plugin:1.0.0-RC4"
  }
}

apply plugin: "org.xtext.idea-aggregator"

Learn how to apply plugins to subprojects