apply plugin: "java" apply plugin: "eclipse" sourceCompatibility = 1.7 targetCompatibility = 1.7 [compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' description = '' dependencies { compile group: 'org.springframework', name: 'spring-web', version:'3.1.1.RELEASE' compile group: 'org.springframework', name: 'spring-webmvc', version:'3.1.1.RELEASE' compile group: 'org.springframework', name: 'spring-core', version:'3.1.1.RELEASE' compile group: 'org.springframework', name: 'spring-core', version:'3.1.1.RELEASE' compile group: 'com.itextpdf', name: 'itextpdf', version:'5.5.6' compile project(':easypoi-base') compile(group: 'javax.servlet', name: 'servlet-api', version:'2.5') { /* This dependency was originally in the Maven provided scope, but the project was not of type war. This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency. Please review and delete this closure when resolved. */ } }