Yigit Boyar | b18b96e | 2016-10-25 13:54:51 -0700 | [diff] [blame] | 1 | apply plugin: 'java' |
| 2 | apply plugin: 'maven' |
| 3 | |
| 4 | sourceCompatibility = 1.7 |
| 5 | |
| 6 | dependencies { |
| 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 Vasilinets | 0265f0f | 2016-10-28 09:40:11 -0700 | [diff] [blame^] | 11 | |
| 12 | uploadArchives { |
| 13 | repositories { |
| 14 | mavenDeployer { |
| 15 | repository(url : rootProject.ext.localMavenRepo) |
| 16 | pom.artifactId = "common" |
| 17 | } |
| 18 | } |
| 19 | } |