voting-booth gradle.build now has dependencies on jetty and RESTful API for testing purposes

vbdev2
Hai Brenner 2016-07-06 21:33:30 +03:00
parent b1a033da5e
commit d804f0dbac
2 changed files with 15 additions and 0 deletions

View File

@ -42,6 +42,14 @@ dependencies {
compile project(':meerkat-common')
compile project(':restful-api-common')
// Jersey for RESTful API
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.5.+'
// Servlets
compile group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.3.+'
compile 'org.eclipse.jetty:jetty-server:9.3.+'
compile 'org.eclipse.jetty:jetty-servlet:9.3.+'
// Logging
compile 'org.slf4j:slf4j-api:1.7.7'
runtime 'ch.qos.logback:logback-classic:1.1.2'

View File

@ -0,0 +1,7 @@
package meerkat.voting;
/**
* Created by hai on 06/07/16.
*/
public class NetworkVirtualPrinterTest {
}