Skip to content

Commit

Permalink
⬆️ Increment library and utils version to 0.6.1 and enable artifact i…
Browse files Browse the repository at this point in the history
…mport in sample module
  • Loading branch information
ekigamba committed Feb 12, 2019
1 parent af53d53 commit f0ed101
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'realm-android'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'

version '0.6.0'
version '0.6.1'
project.version = this.version

task sourceJar(type: Jar) {
Expand Down Expand Up @@ -162,9 +162,9 @@ dependencies { configuration ->
}

// Comment the line below when creating releases - The line is for development of the library & utils
implementation (project(":utils")) {
//implementation (project(":utils")) {
// Uncomment the line below when creating releases
//implementation('io.ona.kujaku:utils:0.6.0') {
implementation('io.ona.kujaku:utils:0.6.1') {
transitive = true;
exclude group: 'com.mapbox.mapboxsdk', module: 'mapbox-android-sdk'
exclude group: 'com.android.support', module: 'support-v4'
Expand Down
5 changes: 3 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ android {

dependencies { configuration ->

developmentKujakuModulesImport(this, configuration)
//developmentKujakuModulesImport(this, configuration)
releaseTestKujakuImport(configuration)
implementation 'com.cocoahero.android:geojson:1.0.1@jar'

implementation "com.android.volley:volley:${rootProject.ext.volleyVersion}"
Expand Down Expand Up @@ -181,6 +182,6 @@ private static void developmentKujakuModulesImport(instance, configuration) {

// This is used when making a release and you need to test that the published artifacts work in host applications OK
private static void releaseTestKujakuImport(configuration) {
configuration.implementation 'io.ona.kujaku:library:0.6.0'
configuration.implementation 'io.ona.kujaku:library:0.6.1'
}

2 changes: 1 addition & 1 deletion utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'

version '0.6.0'
version '0.6.1'
project.version = this.version

task sourceJar(type: Jar) {
Expand Down

0 comments on commit f0ed101

Please sign in to comment.