Skip to content

Commit 9ece230

Browse files
committed
Support for translator 3.18.0
1 parent 7b34485 commit 9ece230

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ EXPOSE 8080
1919

2020
# execute it
2121
# CMD ["mvn", "exec:java"]
22-
CMD ["java", "-jar", "target/cqlTranslationServer-2.5.0.jar", "-d"]
22+
CMD ["java", "-jar", "target/cqlTranslationServer-2.6.0.jar", "-d"]

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Build:
88

99
Execute via the command line:
1010

11-
java -jar target/cqlTranslationServer-2.5.0.jar
11+
java -jar target/cqlTranslationServer-2.6.0.jar
1212

1313
_NOTE: The cqlTranslationServer jar assumes that all dependency jars are located in a `libs` directory relative to the jar's location. If you move the jar from the `target` directory, you will need to move the `target/libs` directory as well. This project no longer produces an "uber-jar", as the CQL-to-ELM classes do not function properly when repackaged into a single jar file._
1414

@@ -18,6 +18,7 @@ CQL Translation Service versions prior to version 2.0.0 always mirrored the CQL
1818

1919
| CQL Translation Service | CQL Tools |
2020
| ----------------------- | --------------------------------------- |
21+
| 2.6.0 | 3.18.0 |
2122
| 2.5.0 | 3.15.0 |
2223
| 2.4.0 | 3.7.1 |
2324
| 2.3.0 | 3.3.2 |

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>org.mitre.bonnie</groupId>
77
<artifactId>cqlTranslationServer</artifactId>
88
<packaging>jar</packaging>
9-
<version>2.5.0</version>
9+
<version>2.6.0</version>
1010
<name>cqlTranslationServer</name>
1111

1212
<repositories>
@@ -200,7 +200,7 @@
200200
</build>
201201

202202
<properties>
203-
<cql.version>3.15.0</cql.version>
203+
<cql.version>3.18.0</cql.version>
204204
<jersey.version>3.1.8</jersey.version>
205205
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
206206
</properties>

0 commit comments

Comments
 (0)