com.github.zxhr.xtext-generator-root-project
所有者: 蒂勒·金
用于使用MWE2生成Xtext DSL语言的插件
https://github.com/zxhr/gradle-xtext-generator
源码: https://github.com/zxhr/gradle-xtext-generator/
使用 plugins DSL
plugins {
id("com.github.zxhr.xtext-generator-root-project") version "0.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.zxhr:gradle-xtext-generator:0.2.0")
}
}
apply(plugin = "com.github.zxhr.xtext-generator-root-project")
使用 plugins DSL
plugins {
id "com.github.zxhr.xtext-generator-root-project" version "0.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.zxhr:gradle-xtext-generator:0.2.0"
}
}
apply plugin: "com.github.zxhr.xtext-generator-root-project"