Skip to content

Commit

Permalink
Bump up the version number for engine to 0.1.0-alpha05 (#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
jingtang10 committed Oct 19, 2021
1 parent 81110bd commit 1d7f2cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ object Dependencies {
"androidx.constraintlayout:constraintlayout:${Versions.Androidx.constraintLayout}"
const val fragmentKtx = "androidx.fragment:fragment-ktx:${Versions.Androidx.fragmentKtx}"
const val recyclerView = "androidx.recyclerview:recyclerview:${Versions.Androidx.recyclerView}"
const val sqliteKtx = "androidx.sqlite:sqlite-ktx:${Versions.Androidx.sqliteKtx}"
const val workRuntimeKtx = "androidx.work:work-runtime-ktx:${Versions.Androidx.workRuntimeKtx}"
const val datastorePref =
"androidx.datastore:datastore-preferences:${Versions.Androidx.datastorePref}"
Expand Down Expand Up @@ -78,6 +79,7 @@ object Dependencies {

const val desugarJdkLibs = "com.android.tools:desugar_jdk_libs:${Versions.desugarJdkLibs}"
const val guava = "com.google.guava:guava:${Versions.guava}"
const val fhirUcum = "org.fhir:ucum:${Versions.fhirUcum}"
const val httpInterceptor = "com.squareup.okhttp3:logging-interceptor:${Versions.http}"
const val http = "com.squareup.okhttp3:okhttp:${Versions.http}"
const val jsonToolsPatch = "com.github.java-json-tools:json-patch:${Versions.jsonToolsPatch}"
Expand Down Expand Up @@ -120,6 +122,7 @@ object Dependencies {
const val navigation = "2.3.4"
const val recyclerView = "1.1.0"
const val room = "2.3.0"
const val sqliteKtx = "2.1.0"
const val workRuntimeKtx = "2.5.0"
const val datastorePref = "1.0.0-rc02"
}
Expand All @@ -137,6 +140,7 @@ object Dependencies {
const val apacheCommonsCompress = "1.20"
const val apacheCommonsIo = "2.10.0"
const val desugarJdkLibs = "1.0.9"
const val fhirUcum = "1.0.3"
const val guava = "28.2-android"
const val hapiFhir = "5.4.0"
const val http = "4.9.1"
Expand Down
10 changes: 5 additions & 5 deletions engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ afterEvaluate {
from(components["release"])
artifactId = "engine"
groupId = "com.google.android.fhir"
version = "0.1.0-alpha04"
version = "0.1.0-alpha05"
// Also publish source code for developers' convenience
artifact(
tasks.create<Jar>("androidSourcesJar") {
Expand Down Expand Up @@ -102,8 +102,6 @@ configurations {
}

dependencies {
implementation("androidx.sqlite:sqlite-ktx:2.1.0")
implementation("org.fhir:ucum:1.0.3")
androidTestImplementation(Dependencies.AndroidxTest.core)
androidTestImplementation(Dependencies.AndroidxTest.extJunitKtx)
androidTestImplementation(Dependencies.AndroidxTest.runner)
Expand All @@ -114,18 +112,20 @@ dependencies {

coreLibraryDesugaring(Dependencies.desugarJdkLibs)

implementation(Dependencies.Androidx.datastorePref)
implementation(Dependencies.Androidx.sqliteKtx)
implementation(Dependencies.Androidx.workRuntimeKtx)
implementation(Dependencies.HapiFhir.validation) {
exclude(module = "commons-logging")
exclude(module = "httpclient")
}
implementation(Dependencies.Lifecycle.liveDataKtx)
implementation(Dependencies.Kotlin.stdlib)
implementation(Dependencies.Room.runtime)
implementation(Dependencies.Room.ktx)
implementation(Dependencies.fhirUcum)
implementation(Dependencies.guava)
implementation(Dependencies.jsonToolsPatch)
implementation(Dependencies.Lifecycle.liveDataKtx)
implementation(Dependencies.Androidx.datastorePref)

kapt(Dependencies.Room.compiler)

Expand Down

0 comments on commit 1d7f2cc

Please sign in to comment.