Skip to content

Commit

Permalink
Fix static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
JPercival committed Sep 13, 2024
1 parent 1646a64 commit 8ba5041
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ configurations.all {
}
}


dependencies {

api(platform("ca.uhn.hapi.fhir:hapi-fhir-bom:${project.findProperty("hapi.version")}"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ plugins {
dependencies {
// Various libraries for Android signatures are available, Jackson uses this one
signature("com.toasttab.android:gummy-bears-api-${project.findProperty("android.api.level")}:0.5.0@signature")
}

animalsniffer {
sourceSets.removeIf { it.name != "main" }
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
}

tasks.named<Checkstyle>("checkstyleMain") {
exclude("generated/**/*.*")
exclude { it.file.path.contains("generated")}
}

tasks.named<Checkstyle>("checkstyleTest") {
Expand Down
2 changes: 1 addition & 1 deletion Src/java/cql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ application {
sourceSets {
main {
antlr {
srcDir("../../grammar")
srcDirs("../../grammar")
}
java {
srcDir("build/generated/sources/antlr/main/java")
Expand Down

0 comments on commit 8ba5041

Please sign in to comment.