io.github.dwarfley.eclipse-plus
Owner: Niklas Johansson
The eclipse plus plugin extends the functionality of the standard eclipse plugin.
https://github.com/Dwarfley/GradleEclipsePlus
Sources: https://github.com/Dwarfley/GradleEclipsePlus
Version 0.1.3 (latest)
0.1.3
Created 09 March 2024.
The eclipse plus plugin extends the functionality of the standard eclipse plugin.
Using the plugins DSL:
plugins {
id("io.github.dwarfley.eclipse-plus") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.dwarfley:gradle-eclipse-plus:0.1.3")
}
}
apply(plugin = "io.github.dwarfley.eclipse-plus")
Using the plugins DSL:
plugins {
id "io.github.dwarfley.eclipse-plus" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.dwarfley:gradle-eclipse-plus:0.1.3"
}
}
apply plugin: "io.github.dwarfley.eclipse-plus"