Search Gradle plugins

org.standardout.eclipseconfig

Plugin for configuring basic editor settings for your Gradle generated Eclipse project, based on EditorConfig plus a couple of Eclipse specific settings like code templates.

https://github.com/stempler/gradle-eclipseconfig

Sources: https://github.com/stempler/gradle-eclipseconfig

Version 1.2.0-SNAPSHOT (latest)

Created 26 October 2016.

Plugin for configuring basic editor settings for your Gradle generated Eclipse project, based on EditorConfig plus a couple of Eclipse specific settings like code templates.

Using the plugins DSL:

plugins {
  id("org.standardout.eclipseconfig") version "1.2.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.standardout:gradle-eclipseconfig:1.2.0-SNAPSHOT")
  }
}

apply(plugin = "org.standardout.eclipseconfig")

Using the plugins DSL:

plugins {
  id "org.standardout.eclipseconfig" version "1.2.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.standardout:gradle-eclipseconfig:1.2.0-SNAPSHOT"
  }
}

apply plugin: "org.standardout.eclipseconfig"

Learn how to apply plugins to subprojects