Skip to content

Commit

Permalink
Implementation package uploaded to Bintray
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuttari committed Oct 3, 2020
1 parent 48231c2 commit 0823515
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
3 changes: 3 additions & 0 deletions implementation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion release-bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
**/
ext {
bintrayRepo = 'KaolDB'
libraryVersion = '1.0.1'
libraryVersion = '1.0.2'

publishedGroupId = 'it.mscuttari.kaoldb'
libraryName = 'KaolDB'
Expand Down

0 comments on commit 0823515

Please sign in to comment.