Search Gradle plugins

Version 0.1.0

Created 01 July 2020.

Plugin for configuring the eclipse plugin test project of an Xtext DSL language

Using the plugins DSL:

plugins {
  id("com.github.zxhr.xtext-generator-eclipse-plugin-test") version "0.1.0"
}

Using legacy plugin application:

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

apply(plugin = "com.github.zxhr.xtext-generator-eclipse-plugin-test")

Using the plugins DSL:

plugins {
  id "com.github.zxhr.xtext-generator-eclipse-plugin-test" version "0.1.0"
}

Using legacy plugin application:

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

apply plugin: "com.github.zxhr.xtext-generator-eclipse-plugin-test"

Learn how to apply plugins to subprojects