blob: fe778afd43e7a4fb0a66187ccea3080fe838622e [file] [log] [blame]
Chris Craik9fd8e612017-06-23 14:07:04 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17apply plugin: 'java'
18apply plugin: 'maven'
19
20sourceCompatibility = 1.7
Yigit Boyar3ec9f622017-07-18 11:06:13 -070021// disable paging for now.
22project.ext.noDocs = true
23uploadArchives.enabled = false
Chris Craik9fd8e612017-06-23 14:07:04 -070024dependencies {
25 compile libs.support.annotations
26 compile project(":arch:common")
27
28 testCompile libs.junit
29 testCompile libs.mockito_core
30 compile 'com.android.support:support-annotations:25.3.1'
31 compile project(path: ':arch:common')
32 compile 'junit:junit:4.12'
33}
34
Chris Craik9fd8e612017-06-23 14:07:04 -070035createAndroidCheckstyle(project)