Skip to content

Commit

Permalink
Version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiesardo committed Aug 4, 2015
1 parent 8286686 commit 84cd4d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions auto-parcel-processor/deploy.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven'
apply plugin: 'signing'

version = "0.3"
version = "0.3.1"

def isReleaseBuild() {
!version.contains("SNAPSHOT")
Expand All @@ -18,7 +18,7 @@ if (isReleaseBuild()) {
}

def username = project.hasProperty("nexusUsername") ? project.getProperty("nexusUsername") : ""
def password = project.hasProperty("nexusPassword") ? project.hasProperty("nexusPassword") : ""
def password = project.hasProperty("nexusPassword") ? project.getProperty("nexusPassword") : ""

afterEvaluate { project ->
uploadArchives {
Expand Down
4 changes: 2 additions & 2 deletions auto-parcel/deploy.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven'
apply plugin: 'signing'

version = "0.3"
version = "0.3.1"

def isReleaseBuild() {
!version.contains("SNAPSHOT")
Expand All @@ -18,7 +18,7 @@ if (isReleaseBuild()) {
}

def username = project.hasProperty("nexusUsername") ? project.getProperty("nexusUsername") : ""
def password = project.hasProperty("nexusPassword") ? project.hasProperty("nexusPassword") : ""
def password = project.hasProperty("nexusPassword") ? project.getProperty("nexusPassword") : ""

afterEvaluate { project ->
uploadArchives {
Expand Down
5 changes: 2 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'

android {
compileSdkVersion 19
buildToolsVersion "22.0.1"

lintOptions {
abortOnError false
}
compileSdkVersion 22
buildToolsVersion "22.0.0"
}

dependencies {
Expand Down

0 comments on commit 84cd4d0

Please sign in to comment.