Search Gradle plugins

net.swisstech.eclipseenhancer

Gradle plugin that creates source folders expected by eclipse (but are missing on an initial git clone or were deleted for some reason)

https://github.com/stackmagic/gradle-eclipseenhancer

Version 1.0.0 (latest)

Created 10 November 2014.

Gradle plugin that creates source folders expected by eclipse (but are missing on an initial git clone or were deleted for some reason)

Using the plugins DSL:

plugins {
  id("net.swisstech.eclipseenhancer") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.swisstech:gradle-eclipseenhancer:1.0.0")
  }
}

apply(plugin = "net.swisstech.eclipseenhancer")

Using the plugins DSL:

plugins {
  id "net.swisstech.eclipseenhancer" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.swisstech:gradle-eclipseenhancer:1.0.0"
  }
}

apply plugin: "net.swisstech.eclipseenhancer"

Learn how to apply plugins to subprojects