Skip to content
Closed
Changes from all commits
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
9 changes: 9 additions & 0 deletions cqf-fhir-cr-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ application { mainClass = "org.opencds.cqf.fhir.cr.cli.Main" }

tasks.named<org.springframework.boot.gradle.tasks.bundling.BootJar>("bootJar") {
mainClass = "org.opencds.cqf.fhir.cr.cli.Main"
// Publish the fat JAR as the primary (unclassified) artifact so consumers
// can resolve it without specifying a classifier
archiveClassifier.set("")
}

tasks.named<Jar>("jar") {
// The standard library JAR gets the "plain" classifier to avoid conflicting
// with the bootJar output
archiveClassifier.set("plain")
}

dependencies {
Expand Down
Loading