blob: feda15d422afc68110687f3f5e849ff358e0a5aa [file] [log] [blame]
/*
* Copyright (C) 2021 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: 'com.android.tools.java-library'
apply plugin: 'com.android.tools.kotlin'
apply plugin: 'com.android.tools.publish'
apply plugin: 'sdk-java-lib'
group = 'com.android.tools.utp'
version = rootProject.ext.baseVersion
base {
archivesName.set("android-test-plugin-host-logcat")
}
dependencies {
implementation libs.com.android.tools.common
implementation libs.com.android.tools.utp.common
implementation libs.com.android.tools.utp.androidTestPluginHostLogcatProto
implementation libs.kotlin_stdlib
implementation libs.protobuf
implementation libs.unified_test_platform_device_provider
compileOnly libs.unified_test_platform_launcher
testImplementation libs.com.android.tools.testutils
testImplementation libs.unified_test_platform_launcher
testImplementation libs.mockito_core
testImplementation libs.junit
}
sourceSets {
main.resources.srcDir 'src/main/java'
test.resources.srcDir 'src/test/java'
}
project.ext.pomName = 'UTP plugins for Android Tools'
project.ext.pomDesc = 'A UTP plugin to export logcat information'