Search Gradle plugins

Version 0.2.0 (latest)

Created 02 November 2020.

Plugin for generating an Xtext DSL language with MWE2

Using the plugins DSL:

plugins {
  id("com.github.zxhr.xtext-generator-root-project") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.zxhr:gradle-xtext-generator:0.2.0")
  }
}

apply(plugin = "com.github.zxhr.xtext-generator-root-project")

Using the plugins DSL:

plugins {
  id "com.github.zxhr.xtext-generator-root-project" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.zxhr:gradle-xtext-generator:0.2.0"
  }
}

apply plugin: "com.github.zxhr.xtext-generator-root-project"

Learn how to apply plugins to subprojects