Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davetrux/9357043 to your computer and use it in GitHub Desktop.
Save davetrux/9357043 to your computer and use it in GitHub Desktop.
Build script for GrizzlyWebServletAndFilterTest gist
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.google.inject', name: 'guice', version: '3.0'
compile group: 'com.google.inject.extensions', name: 'guice-servlet', version: '3.0'
compile group: 'com.sun.jersey', name: 'jersey-core', version: '1.18'
compile group: 'com.sun.jersey', name: 'jersey-server', version: '1.18'
compile group: 'com.sun.jersey', name: 'jersey-servlet', version: '1.18'
compile group: 'com.sun.jersey.contribs', name: 'jersey-guice', version: '1.18'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'com.sun.jersey', name: 'jersey-client', version: '1.18'
testCompile group: 'com.sun.jersey', name: 'jersey-grizzly2', version: '1.18'
testCompile group: 'com.sun.jersey', name: 'jersey-grizzly2-servlet', version: '1.18'
testCompile group: 'com.sun.jersey.jersey-test-framework', name: 'jersey-test-framework-grizzly2', version: '1.18'
testCompile group: 'com.sun.jersey.jersey-test-framework', name: 'jersey-test-framework-core', version: '1.18'
providedCompile 'javax.servlet:servlet-api:2.5'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment