Created
March 4, 2014 22:22
-
-
Save davetrux/9357043 to your computer and use it in GitHub Desktop.
Build script for GrizzlyWebServletAndFilterTest gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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