Skip to content

Commit cdb1cb7

Browse files
committed
Rev to version 3.27.0
1 parent 05684fc commit cdb1cb7

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

Src/java/buildSrc/src/main/groovy/cql.java-conventions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ mavenPublishing {
106106
if (!version.endsWith('SNAPSHOT')) {
107107
signAllPublications()
108108
}
109-
coordinates("info.cqframework", project.name, project.version)
109+
coordinates(project.group, project.name, project.version)
110110
pom {
111111
name = project.name
112112
description = "The ${project.name} library for the Clinical Quality Language Java reference implementation"

Src/java/cql-to-elm-cli/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,21 @@ plugins {
33
id "application"
44
}
55

6+
ext {
7+
hapiVersion = project['hapi.version']
8+
}
9+
610
application {
711
mainClass = 'org.cqframework.cql.cql2elm.cli.Main'
812
}
913

1014
dependencies {
15+
implementation platform("ca.uhn.hapi.fhir:hapi-fhir-bom:${hapiVersion}") {
16+
exclude group: 'org.eclipse.jetty'
17+
exclude group: 'xpp3'
18+
exclude group: 'org.junit'
19+
}
20+
1121
implementation project(':cql-to-elm')
1222
implementation project(':cqf-fhir')
1323
implementation project(':cqf-fhir-npm')

Src/java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx4096m
55
systemProp.sonar.gradle.skipCompile=true
66

77
group=info.cqframework
8-
version=3.27.0-SNAPSHOT
8+
version=3.27.0
99
specification.version=1.5.3
1010
hapi.version=8.2.0
1111
jackson.version=2.17.1

0 commit comments

Comments
 (0)