com.github.zxhr.xtext-generator-eclipse-plugin
所有者: Tyler King
用于配置 Xtext DSL 语言的 Eclipse 插件项目的插件
https://github.com/zxhr/gradle-xtext-generator
来源: https://github.com/zxhr/gradle-xtext-generator/
使用 插件 DSL
plugins {
id("com.github.zxhr.xtext-generator-eclipse-plugin") 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-eclipse-plugin")
使用 插件 DSL
plugins {
id "com.github.zxhr.xtext-generator-eclipse-plugin" 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-eclipse-plugin"