File: build.gradle

package info (click to toggle)
android-platform-tools-analytics-library 2.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,304 kB
  • sloc: java: 2,408; makefile: 10
file content (23 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply plugin: 'java'
apply plugin: 'jacoco'

dependencies {
    compile project(':analytics-library:protos')
    compile 'com.android.tools:annotations:debian'
    compile 'com.android.tools:common:debian'
    compile 'com.google.guava:guava:17.0'
    compile 'com.google.code.gson:gson:2.2.4'

    testCompile 'junit:junit:4.12'
    testCompile 'com.google.truth:truth:0.28'
    testCompile 'com.android.tools:testutils:debian'
}

group = 'com.android.tools.analytics-library'
archivesBaseName = 'shared'
version = rootProject.ext.baseVersion

project.ext.pomName = 'Android Tools Analytics Shared Library'
project.ext.pomDesc = 'Helper Library for tracking usage analytics.'

sourceSets.main.java.srcDir "${rootDir}/debian/additionalSrc/java"