Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
balysv committed Jul 10, 2014
1 parent 0f8837f commit 8cee455
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ Morphing Android menu, back and dismiss buttons
Including in your project
-------------------------

The library will **Soon** be available on Maven Central
The library is available on Maven Central

dependencies {
compile 'com.balysv:material-menu:1.0.0'
}



Usage
-----
Expand Down
6 changes: 4 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ android {
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
versionName "1.0.0"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
}

apply from: './maven_push.gradle'
7 changes: 2 additions & 5 deletions library/maven_push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,8 @@
apply plugin: 'maven'
apply plugin: 'signing'

//def isReleaseBuild() {
// return version.contains("SNAPSHOT") == false
//}

def isReleaseBuild() {
return false
return version.contains("SNAPSHOT") == false
}

def getReleaseRepositoryUrl() {
Expand Down Expand Up @@ -99,6 +95,7 @@ afterEvaluate { project ->

task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.source
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}

task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
Expand Down

0 comments on commit 8cee455

Please sign in to comment.