-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (30 loc) · 1.13 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'java'
id 'application'
}
group 'com.Jennifer'
version '1.0-SNAPSHOT'
sourceCompatibility = 10
targetCompatibility = 10
repositories {
mavenCentral()
}
project.ext {
configPath = "$rootProject.projectDir/config/"
dropwizardVersion = '1.2.0'
}
dependencies {
compile group: 'io.dropwizard', name: 'dropwizard-core', version: dropwizardVersion
compile group: 'io.dropwizard', name: 'dropwizard-client', version: dropwizardVersion
compile group: 'io.dropwizard', name:'dropwizard-assets', version:dropwizardVersion
compile group: 'org.glassfish.jersey.core', name:'jersey-client', version:'2.25.1'
compile group: 'org.glassfish.jersey.containers', name:'jersey-container-servlet', version:'2.25.1'
compile group: 'javax.xml.bind', name:'jaxb-api', version:'2.3.0'
compile group: 'javax.activation', name:'activation', version:'1.1'
compile group: 'com.google.code.gson', name:'gson', version:'2.7'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
mainClassName = "com.Jennifer.mst.PilotApplication"
run {
args 'server', configPath + 'pilot_config.yml'
}