搜索Gradle插件

org.xtext.xtend

所有者: Xtext 团队

一个用于使用Xtext生成代码的Gradle插件

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

使用插件 DSL

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

使用旧插件应用

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

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

使用插件 DSL

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

使用旧插件应用

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

apply plugin: "org.xtext.xtend"

学习如何将插件应用于子项目