You need to install the [https://github.com/spring-projects/eclipse-integration-gradle]
I installed this version[http://dist.springsource.com/release/TOOLS/gradle]
build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: "java" | |
apply plugin: 'eclipse' | |
defaultTableTasks = ['assemble'] | |
version = '1.0' | |
sourceCompatibility = 1.7 | |
targetCompatibility = 1.7 | |
repositories { | |
mavenLocal() | |
mavenCentral() | |
} | |
eclipse { | |
classpath { | |
downloadSources=true | |
} | |
} | |
dependencies { | |
compile 'org.apache.poi:poi:3.9' | |
compile 'commons-codec:commons-codec:1.5' | |
compile 'commons-lang:commons-lang:2.6' | |
testCompile 'junit:junit:4.9' | |
} |
$ gradle cleanEclipse eclipse
You can see jars file in the Eclipse
No comments:
Post a Comment