Skip to content

Commit

Permalink
Merge branch 'master' into custom-package-server
Browse files Browse the repository at this point in the history
  • Loading branch information
jingtang10 authored Oct 9, 2023
2 parents 3b31fb2 + 7efe4d5 commit 01137e6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
6 changes: 6 additions & 0 deletions buildSrc/src/main/kotlin/LicenseeConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ fun Project.configureLicensee() {
allow("Apache-2.0")
allow("MIT")

ignoreDependencies("com.ibm.icu", "icu4j") {
because(
"ICU uses an ICU license that was mispaced and cannot be loaded by this tool right now",
)
}

// Occasionally, dependencies may add their licenses via a direct URL instead of an SPDX id.
nonStandardLicenseUrls.forEach { allowUrl(it) }

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Releases.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object Releases {

object Common : LibraryArtifact {
override val artifactId = "common"
override val version = "0.1.0-alpha04"
override val version = "0.1.0-alpha05"
override val name = "Android FHIR Common Library"
}

Expand Down
14 changes: 12 additions & 2 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,20 @@ android {
kotlin { jvmToolchain(11) }
}

configurations { all { exclude(module = "xpp3") } }
configurations {
all {
exclude(module = "xpp3")
exclude(module = "hapi-fhir-caching-caffeine")
exclude(group = "com.github.ben-manes.caffeine", module = "caffeine")

resolutionStrategy { force("com.google.guava:guava:32.1.2-android") }
}
}

dependencies {
api(Dependencies.HapiFhir.structuresR4)
// REVERT to DEPENDENCIES LATER
api("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:6.8.0")
api("ca.uhn.hapi.fhir:hapi-fhir-caching-guava:6.8.0")

implementation(Dependencies.fhirUcum)

Expand Down

0 comments on commit 01137e6

Please sign in to comment.