Skip to content

Instantly share code, notes, and snippets.

@Dispader
Created December 20, 2013 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dispader/8061600 to your computer and use it in GitHub Desktop.
Save Dispader/8061600 to your computer and use it in GitHub Desktop.
this builds an entire Spring/Hibernate stack, application, and deploys it to all instances
apply plugin: 'eclipse'
apply plugin: 'war'
repositories {
mavenCentral()
}
dependencies {
providedCompile 'javax.servlet:servlet-api:2.5'
providedCompile 'log4j:log4j:1.2.16'
// compile 'org.json:json:20090211'
compile 'com.sun.jersey:jersey-bundle:1.18'
compile 'javax.mail:javax.mail-api:1.5.1'
compile 'org.apache.httpcomponents:httpclient:4.3.1'
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
compile 'org.hibernate:hibernate-core:3.6.10.Final'
compile 'org.json:json:20131018'
compile 'org.springframework:spring-web:3.1.2.RELEASE'
compile 'org.springframework.ws:spring-ws-core:2.1.4.RELEASE'
compile 'xalan:xalan:2.7.1'
compile fileTree(dir: 'src/main/webapp/WEB-INF/lib', include: '*.jar')
runtime 'javax.servlet:jstl:1.1.2'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment