Search Gradle plugins

org.xtext.xtend

A Gradle Plugin for generating code with Xtext

https://www.eclipse.org/Xtext/

Using the plugins DSL:

plugins {
  id("org.xtext.xtend") version "4.0.0"
}

Using legacy plugin application:

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

apply(plugin = "org.xtext.xtend")

Using the plugins DSL:

plugins {
  id "org.xtext.xtend" version "4.0.0"
}

Using legacy plugin application:

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

apply plugin: "org.xtext.xtend"

Learn how to apply plugins to subprojects