Search Gradle plugins

net.vlad.eclipse-gradle-nature

Gradle plugin that adds gradle nature to an eclipse project.

https://github.com/vlad-mk/eclipse-gradle-nature

Version 0.2.0 (latest)

Created 27 March 2017.

No version description available.

Using the plugins DSL:

plugins {
  id("net.vlad.eclipse-gradle-nature") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.vlad:eclipse-gradle-nature:0.2.0")
  }
}

apply(plugin = "net.vlad.eclipse-gradle-nature")

Using the plugins DSL:

plugins {
  id "net.vlad.eclipse-gradle-nature" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.vlad:eclipse-gradle-nature:0.2.0"
  }
}

apply plugin: "net.vlad.eclipse-gradle-nature"

Learn how to apply plugins to subprojects