blob: 235a3d3cbae18148e053bb55de9146ec716fcd0d [file] [log] [blame]
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply plugin: 'java'
apply plugin: 'jacoco-tools-base'
repositories {
maven { url = uri(rootProject.cloneArtifacts.repository) }
}
dependencies {
compile project(':base:annotations')
compile libs.guava
compile libs.apache_httpmime
compile libs.apache_httpcore
compile libs.apache_httpclient
testCompile libs.junit
testCompile libs.netty_all
testCompile libs.truth
testCompile libs.mockito_core
}
group = 'com.android.tools.analytics-library'
archivesBaseName = 'crash'
version = rootProject.ext.baseVersion
project.ext.pomName = 'Android Tools Analytics Crash Library'
project.ext.pomDesc = 'Helper Library for uploading crash reports.'
apply from: "$rootDir/buildSrc/base/publish.gradle"
apply from: "$rootDir/buildSrc/base/bintray.gradle"
apply from: "$rootDir/buildSrc/base/javadoc.gradle"