Search Gradle plugins

org.xtext.idea-dev

A Gradle Plugin for generating code with Xtext

https://github.com/xtext/xtext-gradle-plugin

Using the plugins DSL:

plugins {
  id("org.xtext.idea-dev") version "2.0.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "org.xtext.idea-dev" version "2.0.3"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects