blob: 2e4d17efd70c184e687691b0e77b1183fcaae970 [file] [log] [blame]
Yigit Boyarb18b96e2016-10-25 13:54:51 -07001apply plugin: 'java'
2apply plugin: 'maven'
3
4sourceCompatibility = 1.7
5
6dependencies {
7 testCompile group: 'junit', name: 'junit', version: '4.12'
8 testCompile "org.mockito:mockito-core:1.9.5"
9 compile "com.android.support:support-annotations:25.0.0"
10}
Sergey Vasilinets0265f0f2016-10-28 09:40:11 -070011
12uploadArchives {
13 repositories {
14 mavenDeployer {
15 repository(url : rootProject.ext.localMavenRepo)
16 pom.artifactId = "common"
17 }
18 }
19}