voting-booth gradle.build now has dependencies on jetty and RESTful API for testing purposes
parent
b1a033da5e
commit
d804f0dbac
|
@ -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'
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
package meerkat.voting;
|
||||
|
||||
/**
|
||||
* Created by hai on 06/07/16.
|
||||
*/
|
||||
public class NetworkVirtualPrinterTest {
|
||||
}
|
Loading…
Reference in New Issue