apply plugin: 'java' | |
apply plugin: 'maven' | |
sourceCompatibility = 1.7 | |
dependencies { | |
testCompile "junit:junit:$junit_version" | |
testCompile "org.mockito:mockito-core:$mockito_version" | |
compile "com.android.support:support-annotations:$support_lib_version" | |
} | |
uploadArchives { | |
repositories { | |
mavenDeployer { | |
repository(url : rootProject.ext.localMavenRepo) | |
pom.artifactId = "common" | |
} | |
} | |
} | |
createAndroidCheckstyle(project) |