-
Notifications
You must be signed in to change notification settings - Fork 25
/
dependencies.gradle
41 lines (38 loc) · 1.82 KB
/
dependencies.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
import org.gradle.internal.jvm.Jvm
ext {
versions = [
java : JavaVersion.VERSION_1_8,
// Main dependencies
javaPoet : '1.12.0',
autoCommon : '0.10',
autoTransient : '1.0.0',
autoValue : '1.7',
autoService : '1.0-rc6',
guava : '27.1-jre',
moshi : '1.9.2',
incapHelper : '0.2',
jsr305 : '3.0.2',
// For testing
junit : '4.12',
truth : '1.0',
compileTesting: '0.18',
assertJ : '2.5.0',
]
libraries = [
javaPoet : "com.squareup:javapoet:$versions.javaPoet",
autoCommon : "com.google.auto:auto-common:$versions.autoCommon",
autoTransient : "io.sweers.autotransient:autotransient:${versions.autoTransient}",
autoValue : "com.google.auto.value:auto-value:$versions.autoValue",
autoValueAnnotations: "com.google.auto.value:auto-value-annotations:$versions.autoValue",
autoService : "com.google.auto.service:auto-service:$versions.autoService",
guava : "com.google.guava:guava:${versions.guava}",
moshi : "com.squareup.moshi:moshi:$versions.moshi",
incap : "net.ltgt.gradle.incap:incap:${versions.incapHelper}",
incapProcessor : "net.ltgt.gradle.incap:incap-processor:${versions.incapHelper}",
jsr305 : "com.google.code.findbugs:jsr305:$versions.jsr305",
junit : "junit:junit:$versions.junit",
truth : "com.google.truth:truth:$versions.truth",
compileTesting : "com.google.testing.compile:compile-testing:$versions.compileTesting",
assertJ : "org.assertj:assertj-core:$versions.assertJ"
]
}