org.standardout.eclipseconfig
所有者: Simon Templer
Gradle的插件,用于配置由Gradle生成的Eclipse项目的基本编辑设置,基于EditorConfig,还包含一些Eclipse特定的设置,如代码模板。
https://github.com/stempler/gradle-eclipseconfig
源代码: https://github.com/stempler/gradle-eclipseconfig
版本 1.2.0-SNAPSHOT(最新版本)
1.2.0-SNAPSHOT
创建于2016年10月26日。
Gradle的插件,用于配置由Gradle生成的Eclipse项目的基本编辑设置,基于EditorConfig,还包含一些Eclipse特定的设置,如代码模板。
使用插件DSI
plugins {
id("org.standardout.eclipseconfig") version "1.2.0-SNAPSHOT"
}
使用遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.standardout:gradle-eclipseconfig:1.2.0-SNAPSHOT")
}
}
apply(plugin = "org.standardout.eclipseconfig")