I use Eclipse STS (Spring Tools Suite) with Spring support. To help editing gradle.build file two plugins should be installed:
To generate eclipse project file from build coniguration add following to build.gradle:
- Groovy eclipse plugin http://groovy.codehaus.org/Eclipse+Plugin
- SpringSource Tool Suite Gradle Integration (is included into STS)
To generate eclipse project file from build coniguration add following to build.gradle:
apply plugin: 'eclipse'
eclipse {
project {
natures 'com.springsource.sts.gradle.core.nature',
'org.eclipse.jdt.groovy.core.groovyNature',
'com.springsource.sts.gradle.core.nature'
}
}
No comments:
Post a Comment