-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
54 lines (40 loc) · 1.33 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
apply plugin: 'java'
sourceCompatibility = 1.8
allprojects {
apply plugin: 'idea'
group = 'com.yieldlabs.rtb-broker'
}
subprojects {
apply plugin: 'java'
apply plugin: 'groovy'
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
task allDeps(type: DependencyReportTask) {}
buildscript {
repositories {
mavenCentral()
}
}
dependencies {
repositories {
mavenCentral()
}
compile 'org.eclipse.jetty:jetty-proxy:9.0.7.v20131107'
compile 'org.projectlombok:lombok:1.16.8'
compile 'org.apache.httpcomponents:httpasyncclient:4.1.1'
compile 'io.dropwizard:dropwizard-core:' + dropwizardVersion,
'io.dropwizard:dropwizard-assets:' + dropwizardVersion,
'io.dropwizard:dropwizard-client:' + dropwizardVersion
compile('com.hubspot.dropwizard:dropwizard-guice:' + '0.8.4.0') {
exclude group: 'com.google.inject', module: 'guice_servlet'
exclude group: 'javassist', module: 'javassist'
}
testCompile 'junit:junit:4.11'
}
}
ext.mainClassName = 'com.yieldlabs.rtb.broker.BrokerApplication'
ext.configFile = './config/development.yaml'
task createWrapper(type: Wrapper) {
gradleVersion = '2.11'
}
apply from: file("gradle/dropwizard.gradle")