Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement inequality operators (<, >, <=, >=) in the enable when statement #848

Merged
merged 20 commits into from
Nov 25, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into sp/inequality
  • Loading branch information
santosh-pingle committed Nov 9, 2021
commit 91879d6ccf34a2e3d1629608649f305bf10240e4
5 changes: 1 addition & 4 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,4 @@ java {
targetCompatibility = JavaVersion.VERSION_1_8
}

dependencies {
api(Dependencies.HapiFhir.structuresR4) { exclude(module = "junit") }
implementation(Dependencies.fhirUcum)
}
dependencies { implementation(Dependencies.fhirUcum) }
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import org.fhir.ucum.Pair
import org.fhir.ucum.UcumEssenceService
import org.fhir.ucum.UcumException

/** Canonicalizes unit values to UCUM base units. */
object UnitConverter {
private val ucumService by lazy {
UcumEssenceService(this::class.java.getResourceAsStream("/ucum-essence.xml"))
Expand Down
2 changes: 1 addition & 1 deletion datacapture/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ android {
configurations { all { exclude(module = "xpp3") } }

dependencies {
implementation(project(mapOf("path" to ":common")))
androidTestImplementation(Dependencies.AndroidxTest.core)
androidTestImplementation(Dependencies.AndroidxTest.extJunit)
androidTestImplementation(Dependencies.AndroidxTest.extJunitKtx)
Expand All @@ -100,6 +99,7 @@ dependencies {
implementation(Dependencies.Lifecycle.viewModelKtx)
implementation(Dependencies.material)
implementation(Dependencies.flexBox)
implementation(project(":common"))

testImplementation(Dependencies.AndroidxTest.core)
testImplementation(Dependencies.junit)
Expand Down
1 change: 0 additions & 1 deletion engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ configurations {
}

dependencies {
implementation(project(mapOf("path" to ":common")))
androidTestImplementation(Dependencies.AndroidxTest.core)
androidTestImplementation(Dependencies.AndroidxTest.extJunitKtx)
androidTestImplementation(Dependencies.AndroidxTest.runner)
Expand Down
4 changes: 0 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,3 @@ include(":datacapturegallery")
include(":engine")

include(":reference")

include(":codegen")

include(":common")
You are viewing a condensed version of this merge commit. You can view the full changes here.