Clean v4-preferencefragment build.gradle

This commit is contained in:
Daniel Martí 2015-04-01 11:28:51 +02:00
parent 2ce62aac65
commit 5fef0d012f

View File

@ -1,7 +1,6 @@
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
mavenLocal()
} }
dependencies { dependencies {
@ -10,7 +9,6 @@ buildscript {
} }
apply plugin: 'android-library' apply plugin: 'android-library'
apply plugin: 'maven'
version = VERSION version = VERSION
group = GROUP group = GROUP
@ -21,7 +19,7 @@ dependencies {
android { android {
compileSdkVersion 19 compileSdkVersion 19
buildToolsVersion '20.0.0' buildToolsVersion '22.0.1'
defaultConfig { defaultConfig {
minSdkVersion 7 minSdkVersion 7
@ -40,13 +38,3 @@ android {
} }
} }
} }
uploadArchives {
repositories.mavenDeployer {
repository(url: "file:maven-repository/")
pom.groupId = GROUP
pom.artifactId = ARTIFACT_ID
pom.version = VERSION
}
}