Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theresajayne/f8703ff0259825c06527686cab95edb8 to your computer and use it in GitHub Desktop.
Save theresajayne/f8703ff0259825c06527686cab95edb8 to your computer and use it in GitHub Desktop.
plugins {
id 'java'
id 'war'
id "org.akhikhl.gretty" version "2.0.0"
}
gretty {
httpPort = 8080
contextPath = 'spring4'
servletContainer = 'jetty9'
}
group 'com.github.theresajayne'
version '1.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'ch.qos.logback:logback-classic:1.1.3'
compile 'org.springframework:spring-webmvc:4.1.6.RELEASE'
compile 'javax.servlet:jstl:1.2'
providedCompile 'javax.servlet:servlet-api:2.5'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment