Search Gradle plugins

org.xtext.xtext

A Gradle Plugin for generating code with Xtext

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

Version 1.0.0-RC4 (latest)

Created 16 December 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.xtext.xtext"

Learn how to apply plugins to subprojects