From 08235155e949b6ac0c47934042543549980089d5 Mon Sep 17 00:00:00 2001 From: Michele Scuttari Date: Sat, 3 Oct 2020 15:07:09 +0200 Subject: [PATCH] Implementation package uploaded to Bintray --- README.md | 4 ++-- api/build.gradle | 2 +- core/build.gradle | 6 +++--- implementation/build.gradle | 3 +++ release-bintray.gradle | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9802ea7..2fc4bff 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ It is sufficient to add the two following Gradle dependencies to the application ```gradle dependencies { - implementation 'it.mscuttari.kaoldb:core:1.0.0' - annotationProcessor 'it.mscuttari.kaoldb:annotation-processor:1.0.0' + implementation 'it.mscuttari.kaoldb:core:1.0.2' + annotationProcessor 'it.mscuttari.kaoldb:annotation-processor:1.0.2' } ``` diff --git a/api/build.gradle b/api/build.gradle index d0c88c7..e41c591 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -63,7 +63,7 @@ dependencies { implementation group: 'androidx.annotation', name: 'annotation', version: '1.1.0' // https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-livedata - implementation group: 'androidx.lifecycle', name: 'lifecycle-livedata', version: '2.3.0-alpha06' + implementation group: 'androidx.lifecycle', name: 'lifecycle-livedata', version: '2.3.0-beta01' // https://mvnrepository.com/artifact/com.google.guava/guava implementation group: 'com.google.guava', name: 'guava', version: '28.2-android' diff --git a/core/build.gradle b/core/build.gradle index fec7607..b3c7578 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -73,11 +73,11 @@ dependencies { testImplementation group: 'org.hamcrest', name: 'hamcrest-junit', version: '2.0.0.0' // https://mvnrepository.com/artifact/androidx.test/core - testImplementation group: 'androidx.test', name: 'core', version: '1.2.0' + testImplementation group: 'androidx.test', name: 'core', version: '1.3.0' // https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-livedata - testImplementation group: 'androidx.lifecycle', name: 'lifecycle-livedata', version: '2.3.0-alpha06' + testImplementation group: 'androidx.lifecycle', name: 'lifecycle-livedata', version: '2.3.0-beta01' } apply from: rootProject.file('release-bintray.gradle') -bintrayUpload.mustRunAfter(':annotations:bintrayUpload', ':api:bintrayUpload') +bintrayUpload.mustRunAfter(':annotations:bintrayUpload', ':api:bintrayUpload', ':implementation:bintrayUpload') diff --git a/implementation/build.gradle b/implementation/build.gradle index 1a3ee96..53538b8 100644 --- a/implementation/build.gradle +++ b/implementation/build.gradle @@ -73,3 +73,6 @@ dependencies { // https://mvnrepository.com/artifact/org.hamcrest/hamcrest-junit testImplementation group: 'org.hamcrest', name: 'hamcrest-junit', version: '2.0.0.0' } + +apply from: rootProject.file('release-bintray.gradle') +bintrayUpload.mustRunAfter(':annotations:bintrayUpload', ':api:bintrayUpload') diff --git a/release-bintray.gradle b/release-bintray.gradle index f3454a0..12ef03d 100644 --- a/release-bintray.gradle +++ b/release-bintray.gradle @@ -19,7 +19,7 @@ **/ ext { bintrayRepo = 'KaolDB' - libraryVersion = '1.0.1' + libraryVersion = '1.0.2' publishedGroupId = 'it.mscuttari.kaoldb' libraryName = 'KaolDB'