version = '1.1'
repositories {
mavenCentral()
flatDir(dirs: 'lib')
}
apply plugin: 'war'
apply plugin: 'jetty'
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
compile 'javax.servlet:servlet-api:2.5'
compile 'javax.servlet.jsp:javax.servlet.jsp-api:2.2.1'
compile 'javax.servlet:jstl:1.2'
compile 'taglibs:string:1.1.0'
compile 'commons-lang:commons-lang:2.3'
compile 'org.apache.struts:struts-tiles:1.3.10'
compile 'log4j:log4j:1.2.16'
compile 'webwidgets:webwidgets:0.1'
}
[jettyRun, jettyRunWar]*.with {
contextPath = '/'
httpPort = 8081
}