161444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets/*
261444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * Copyright (C) 2017 The Android Open Source Project
361444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets *
461444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * Licensed under the Apache License, Version 2.0 (the "License");
561444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * you may not use this file except in compliance with the License.
661444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * You may obtain a copy of the License at
761444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets *
861444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets *      http://www.apache.org/licenses/LICENSE-2.0
961444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets *
1061444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * Unless required by applicable law or agreed to in writing, software
1161444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * distributed under the License is distributed on an "AS IS" BASIS,
1261444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1361444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * See the License for the specific language governing permissions and
1461444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets * limitations under the License.
1561444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets */
1661444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets
17526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport static androidx.build.dependencies.DependenciesKt.*
18526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport androidx.build.LibraryGroups
19526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport androidx.build.LibraryVersions
20526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport androidx.build.SupportLibraryExtension;
2161444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets
22f8b708aca586e946adad0bc3022b0c199224c07fAurimas Liutikasplugins {
23f8b708aca586e946adad0bc3022b0c199224c07fAurimas Liutikas    id("SupportJavaLibraryPlugin")
24f8b708aca586e946adad0bc3022b0c199224c07fAurimas Liutikas}
258205ce117ac0673ae2cb62efd9ba888093ffcb71Yigit Boyar
268205ce117ac0673ae2cb62efd9ba888093ffcb71Yigit Boyardependencies {
27cdcbdb02985e169d7c268a657d3d24d65b05ec02Aurimas Liutikas    compile(SUPPORT_ANNOTATIONS)
288205ce117ac0673ae2cb62efd9ba888093ffcb71Yigit Boyar
29831c466c89d3975f18aabeed4debe08ed2d26bddAurimas Liutikas    testCompile(JUNIT)
30831c466c89d3975f18aabeed4debe08ed2d26bddAurimas Liutikas    testCompile(MOCKITO_CORE)
3161444da588bb2454012ff23b99662dade74fa169Sergey Vasilinets}
328205ce117ac0673ae2cb62efd9ba888093ffcb71Yigit Boyar
33bb85facdec67ba2d8c47fca3e80e6ba480e14fd3Aurimas LiutikassupportLibrary {
34ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    name = "Android Arch-Common"
35ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    publish = true
3678c1ab769dfe503ffd0b25cb998db80202a1bfcbAurimas Liutikas    mavenVersion = LibraryVersions.ARCH_CORE
377f40a7ef7894666df581acf8228e86f00569ab92Aurimas Liutikas    mavenGroup = LibraryGroups.ARCH_CORE
38ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    inceptionYear = "2017"
39ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    description = "Android Arch-Common"
40ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    url = SupportLibraryExtension.ARCHITECTURE_URL
41bb85facdec67ba2d8c47fca3e80e6ba480e14fd3Aurimas Liutikas}