Skip to content

Commit 3d57fe5

Browse files
authoredApr 21, 2023
release of ruler 0.13.0 (#709)
Co-authored-by: justin.mckelvy <justin.mckelvy@smilecdr.com>
1 parent b66d085 commit 3d57fe5

File tree

16 files changed

+91
-91
lines changed

16 files changed

+91
-91
lines changed
 

‎core/pom.xml

+20-20
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-core</artifactId>
@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>org.opencds.cqf.ruler</groupId>
1515
<artifactId>cqf-ruler-external</artifactId>
16-
<version>0.13.0-SNAPSHOT</version>
16+
<version>0.13.0</version>
1717
</dependency>
1818

1919
<dependency>
@@ -46,6 +46,24 @@
4646
<groupId>commons-io</groupId>
4747
<artifactId>commons-io</artifactId>
4848
</dependency>
49+
<dependency>
50+
<groupId>org.codehaus.jettison</groupId>
51+
<artifactId>jettison</artifactId>
52+
<version>1.5.2</version>
53+
<scope>compile</scope>
54+
<exclusions>
55+
<exclusion>
56+
<groupId>com.fasterxml.woodstox</groupId>
57+
<artifactId>woodstox-core</artifactId>
58+
</exclusion>
59+
</exclusions>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.fasterxml.woodstox</groupId>
63+
<artifactId>woodstox-core</artifactId>
64+
<version>6.4.0</version>
65+
<scope>compile</scope>
66+
</dependency>
4967

5068
<dependency>
5169
<groupId>ca.uhn.hapi.fhir</groupId>
@@ -118,24 +136,6 @@
118136
<artifactId>spring-boot-starter-test</artifactId>
119137
<scope>test</scope>
120138
</dependency>
121-
<dependency>
122-
<groupId>org.codehaus.jettison</groupId>
123-
<artifactId>jettison</artifactId>
124-
<version>1.5.2</version>
125-
<scope>compile</scope>
126-
<exclusions>
127-
<exclusion>
128-
<groupId>com.fasterxml.woodstox</groupId>
129-
<artifactId>woodstox-core</artifactId>
130-
</exclusion>
131-
</exclusions>
132-
</dependency>
133-
<dependency>
134-
<groupId>com.fasterxml.woodstox</groupId>
135-
<artifactId>woodstox-core</artifactId>
136-
<version>6.4.0</version>
137-
<scope>compile</scope>
138-
</dependency>
139139
<dependency>
140140
<groupId>com.h2database</groupId>
141141
<artifactId>h2</artifactId>

‎example/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.opencds.cqf.ruler</groupId>
77
<artifactId>cqf-ruler</artifactId>
8-
<version>0.13.0-SNAPSHOT</version>
8+
<version>0.13.0</version>
99
<relativePath>../</relativePath>
1010
</parent>
1111

@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>org.opencds.cqf.ruler</groupId>
1818
<artifactId>cqf-ruler-core</artifactId>
19-
<version>0.13.0-SNAPSHOT</version>
19+
<version>0.13.0</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>org.junit.jupiter</groupId>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>org.opencds.cqf.ruler</groupId>
3333
<artifactId>cqf-ruler-test</artifactId>
34-
<version>0.13.0-SNAPSHOT</version>
34+
<version>0.13.0</version>
3535
<scope>test</scope>
3636
</dependency>
3737
<dependency>

‎external/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-external</artifactId>

‎plugin/case-reporting/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-case-reporting</artifactId>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.opencds.cqf.ruler</groupId>
1414
<artifactId>cqf-ruler-cql</artifactId>
15-
<version>0.13.0-SNAPSHOT</version>
15+
<version>0.13.0</version>
1616
</dependency>
1717

1818
</dependencies>

‎plugin/cds-hooks/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-cds-hooks</artifactId>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.opencds.cqf.ruler</groupId>
1414
<artifactId>cqf-ruler-cql</artifactId>
15-
<version>0.13.0-SNAPSHOT</version>
15+
<version>0.13.0</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>org.opencds.cqf.ruler</groupId>
1919
<artifactId>cqf-ruler-cr</artifactId>
20-
<version>0.13.0-SNAPSHOT</version>
20+
<version>0.13.0</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>org.opencds.cqf.ruler</groupId>
2424
<artifactId>cqf-ruler-security</artifactId>
25-
<version>0.13.0-SNAPSHOT</version>
25+
<version>0.13.0</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.opencds.cqf.ruler</groupId>
2929
<artifactId>cqf-ruler-cpg</artifactId>
30-
<version>0.13.0-SNAPSHOT</version>
30+
<version>0.13.0</version>
3131
</dependency>
3232
</dependencies>
3333
</project>

‎plugin/cpg/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-cpg</artifactId>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.opencds.cqf.ruler</groupId>
1414
<artifactId>cqf-ruler-cql</artifactId>
15-
<version>0.13.0-SNAPSHOT</version>
15+
<version>0.13.0</version>
1616
</dependency>
1717

1818
<dependency>
1919
<groupId>org.opencds.cqf.ruler</groupId>
2020
<artifactId>cqf-ruler-security</artifactId>
21-
<version>0.13.0-SNAPSHOT</version>
21+
<version>0.13.0</version>
2222
<scope>test</scope>
2323
</dependency>
2424

‎plugin/cql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-cql</artifactId>

‎plugin/cr/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99
<artifactId>cqf-ruler-cr</artifactId>
1010
<dependencies>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>org.opencds.cqf.ruler</groupId>
2929
<artifactId>cqf-ruler-cql</artifactId>
30-
<version>0.13.0-SNAPSHOT</version>
30+
<version>0.13.0</version>
3131
</dependency>
3232
</dependencies>
3333
</project>

‎plugin/dev-tools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-dev-tools</artifactId>

‎plugin/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-plugin</artifactId>
@@ -25,12 +25,12 @@
2525
<dependency>
2626
<groupId>org.opencds.cqf.ruler</groupId>
2727
<artifactId>cqf-ruler-core</artifactId>
28-
<version>0.13.0-SNAPSHOT</version>
28+
<version>0.13.0</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.opencds.cqf.ruler</groupId>
3232
<artifactId>cqf-ruler-external</artifactId>
33-
<version>0.13.0-SNAPSHOT</version>
33+
<version>0.13.0</version>
3434
</dependency>
3535

3636
<dependency>
@@ -50,7 +50,7 @@
5050
<dependency>
5151
<groupId>org.opencds.cqf.ruler</groupId>
5252
<artifactId>cqf-ruler-test</artifactId>
53-
<version>0.13.0-SNAPSHOT</version>
53+
<version>0.13.0</version>
5454
<scope>test</scope>
5555
</dependency>
5656
<dependency>

‎plugin/ra/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-ra</artifactId>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.opencds.cqf.ruler</groupId>
1414
<artifactId>cqf-ruler-cr</artifactId>
15-
<version>0.13.0-SNAPSHOT</version>
15+
<version>0.13.0</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>com.opencsv</groupId>

‎plugin/sdc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-sdc</artifactId>

‎plugin/security/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<parent>
55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler-plugin</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
</parent>
99

1010
<artifactId>cqf-ruler-security</artifactId>
1111
<dependencies>
1212
<dependency>
1313
<groupId>org.opencds.cqf.ruler</groupId>
1414
<artifactId>cqf-ruler-dev-tools</artifactId>
15-
<version>0.13.0-SNAPSHOT</version>
15+
<version>0.13.0</version>
1616
<scope>test</scope>
1717
</dependency>
1818
</dependencies>

‎pom.xml

+29-29
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.opencds.cqf.ruler</groupId>
66
<artifactId>cqf-ruler</artifactId>
7-
<version>0.13.0-SNAPSHOT</version>
7+
<version>0.13.0</version>
88
<packaging>pom</packaging>
99

1010
<name>cqf-ruler</name>
@@ -87,12 +87,12 @@
8787
</distributionManagement>
8888

8989
<properties>
90-
<cqf-tooling.version>2.4.0-SNAPSHOT</cqf-tooling.version>
90+
<cqf-tooling.version>2.4.0</cqf-tooling.version>
9191

9292
<!-- CQL Support -->
93-
<cqframework.version>2.7.0-SNAPSHOT</cqframework.version>
94-
<cql-engine.version>2.7.0-SNAPSHOT</cql-engine.version>
95-
<cql-evaluator.version>2.7.0-SNAPSHOT</cql-evaluator.version>
93+
<cqframework.version>2.7.0</cqframework.version>
94+
<cql-engine.version>2.7.0</cql-engine.version>
95+
<cql-evaluator.version>2.6.0</cql-evaluator.version>
9696

9797
<!-- Dependency Versions -->
9898
<fhir_core_version>5.6.36</fhir_core_version>
@@ -108,30 +108,6 @@
108108

109109
<dependencyManagement>
110110
<dependencies>
111-
<dependency>
112-
<groupId>org.codehaus.jettison</groupId>
113-
<artifactId>jettison</artifactId>
114-
<version>1.5.2</version>
115-
<scope>compile</scope>
116-
<exclusions>
117-
<exclusion>
118-
<groupId>com.fasterxml.woodstox</groupId>
119-
<artifactId>woodstox-core</artifactId>
120-
</exclusion>
121-
</exclusions>
122-
</dependency>
123-
<dependency>
124-
<groupId>com.fasterxml.jackson.core</groupId>
125-
<artifactId>jackson-databind</artifactId>
126-
<version>2.13.4.1</version>
127-
<scope>compile</scope>
128-
</dependency>
129-
<dependency>
130-
<groupId>com.fasterxml.woodstox</groupId>
131-
<artifactId>woodstox-core</artifactId>
132-
<version>6.4.0</version>
133-
<scope>compile</scope>
134-
</dependency>
135111
<dependency>
136112
<groupId>org.springframework</groupId>
137113
<artifactId>spring-framework-bom</artifactId>
@@ -164,6 +140,30 @@
164140
<type>pom</type>
165141
<scope>import</scope>
166142
</dependency>
143+
<dependency>
144+
<groupId>org.codehaus.jettison</groupId>
145+
<artifactId>jettison</artifactId>
146+
<version>1.5.2</version>
147+
<scope>compile</scope>
148+
<exclusions>
149+
<exclusion>
150+
<groupId>com.fasterxml.woodstox</groupId>
151+
<artifactId>woodstox-core</artifactId>
152+
</exclusion>
153+
</exclusions>
154+
</dependency>
155+
<dependency>
156+
<groupId>com.fasterxml.jackson.core</groupId>
157+
<artifactId>jackson-databind</artifactId>
158+
<version>2.13.4.1</version>
159+
<scope>compile</scope>
160+
</dependency>
161+
<dependency>
162+
<groupId>com.fasterxml.woodstox</groupId>
163+
<artifactId>woodstox-core</artifactId>
164+
<version>6.4.0</version>
165+
<scope>compile</scope>
166+
</dependency>
167167

168168
<dependency>
169169
<groupId>org.apache.commons</groupId>

0 commit comments

Comments
 (0)