org.standardout.eclipseconfig
Owner: Simon Templer
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.standardout.eclipseconfig") version "1.2.0-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.standardout.eclipseconfig:org.standardout.eclipseconfig.gradle.plugin:1.2.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("org.standardout.eclipseconfig") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.standardout.eclipseconfig:org.standardout.eclipseconfig.gradle.plugin:1.2.0-SNAPSHOT") } } apply(plugin = "org.standardout.eclipseconfig")
- Applying plugins to all subprojects .