搜索Gradle插件

版本 0.2.0 (最新版)

0.2.0

创建于2020年11月2日。

配置Xtext DSL语言运行时项目的插件

使用插件DSL

plugins {
  id("com.github.zxhr.xtext-generator-runtime") 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-runtime")

使用插件DSL

plugins {
  id "com.github.zxhr.xtext-generator-runtime" 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-runtime"

了解如何将插件应用于子项目