Skip to content

vlad-mk/eclipse-gradle-nature

Repository files navigation

eclipse-gradle-nature

Build Status Download

#Overview

Gradle plugin extending the standard eclipse plugin to add gradle nature to eclipse projects. Gradle Tooling musst be installed in eclipse to use such projects.

downloading

this plugin can be downloaded from plugins.gradle.org

usage

Apply plugin gradle 2.1+ style:

buildscript {
    repositories {
        mavenCentral() // for plugin dependencies
    }
}

plugins {
    id 'net.vlad.eclipse-gradle-nature' version '0.2.5'
}

Using old gradle style:

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath group: 'net.vlad', name: 'eclipse-gradle-nature', version: '0.2.5'
    }
}

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

Tasks

Plugin adds following tasks to the IDE tasks group

  • eclipseGradle - Generates Eclipse Gradle configuration files.
  • cleanEclipseGradle - Cleans Eclipse Gradle configuration files.

which will be called by eclise and cleanEclipse tasks

so usage:

gradle eclipse

About

gradle plugin to add gradle nature to eclipse projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages