-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (35 loc) · 1.25 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
buildscript {
repositories {
mavenCentral()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
// Kotlin Gradle plugin
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:0.14.449'
// Annotation processing plugin
classpath 'net.ltgt.gradle:gradle-apt-plugin:0.4'
}
}
allprojects {
repositories {
mavenCentral()
}
}
def daggerVersion = '2.0.1'
def jacksonVersion = '2.6.2'
ext.libraries = [
kotlinStdLib : 'org.jetbrains.kotlin:kotlin-stdlib:0.14.449',
dagger : 'com.google.dagger:dagger:' + daggerVersion,
daggerCompiler : 'com.google.dagger:dagger-compiler:' + daggerVersion,
javaxAnnotation : 'org.glassfish:javax.annotation:10.0-b28',
rxNetty : 'io.reactivex:rxnetty:0.4.11',
rxJava : 'io.reactivex:rxjava:1.0.14',
jacksonCore : 'com.fasterxml.jackson.core:jackson-core:' + jacksonVersion,
jacksonDatabind : 'com.fasterxml.jackson.core:jackson-databind:' + jacksonVersion,
jacksonAnnotations: 'com.fasterxml.jackson.core:jackson-databind:jackson-annotations' + jacksonVersion,
sqliteJdbc : 'org.xerial:sqlite-jdbc:3.8.11.1',
junit : 'junit:junit:4.11',
mockitoCore : 'org.mockito:mockito-core:1.10.19',
]