Skip to content

Commit

Permalink
Merge pull request #5 from xrubioj/master
Browse files Browse the repository at this point in the history
Updates Gradle dependencies so it is compatible with Gradle 5.x
  • Loading branch information
KimChangYoun authored Mar 19, 2019
2 parents f1a2aff + 05f2173 commit 3407272
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 5 additions & 3 deletions LibRootbeerFresh/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.3'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'

classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
Expand Down Expand Up @@ -140,8 +140,10 @@ artifacts {
archives sourcesJar
}

task findConventions << {
println project.getConvention()
task findConventions {
doLast {
println project.getConvention()
}
}

apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.3'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'

classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
Expand All @@ -24,7 +24,7 @@ android {
minSdkVersion minSdkVer
targetSdkVersion targetSdkVer
versionCode 10
versionName "0.10"
versionName "0.0.10"
}

//check if the keystore details are defined in gradle.properties (this is so the key is not in github)
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=0.0.10
VERSION_CODE=10
GROUP=com.kimchangyoun
Expand Down

0 comments on commit 3407272

Please sign in to comment.