blob: c14aba5adb62d519f46805729179084c7585f3f5 [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
dependencies {
implementation libs.com.android.tools.common
implementation project(':base:utp:android-test-plugin-host-additional-test-output-proto')
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 copy additional test output to host machine'