1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
apply plugin: 'java'
apply plugin: 'jacoco'
dependencies {
compile 'com.android.tools:annotations:debian'
compile project(':analytics-library:protos')
compile project(':analytics-library:shared')
compile 'com.google.protobuf:protobuf-java:2.5.0'
compile 'com.google.guava:guava:17.0'
testCompile 'com.android.tools:testutils:debian'
testCompile 'junit:junit:4.12'
testCompile 'com.google.truth:truth:0.28'
}
group = 'com.android.tools.analytics-library'
archivesBaseName = 'inspector'
version = rootProject.ext.baseVersion
project.ext.pomName = 'Android Tools Analytics Inspector'
project.ext.pomDesc = 'Tool for debugging usage analytics spool files.'
|