Skip to content

Commit

Permalink
Support for translator 3.18.0 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
elsaperelli authored Nov 21, 2024
1 parent 7b34485 commit c92ee66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ EXPOSE 8080

# execute it
# CMD ["mvn", "exec:java"]
CMD ["java", "-jar", "target/cqlTranslationServer-2.5.0.jar", "-d"]
CMD ["java", "-jar", "target/cqlTranslationServer-2.6.0.jar", "-d"]
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Build:

Execute via the command line:

java -jar target/cqlTranslationServer-2.5.0.jar
java -jar target/cqlTranslationServer-2.6.0.jar

_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._

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

| CQL Translation Service | CQL Tools |
| ----------------------- | --------------------------------------- |
| 2.6.0 | 3.18.0 |
| 2.5.0 | 3.15.0 |
| 2.4.0 | 3.7.1 |
| 2.3.0 | 3.3.2 |
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>org.mitre.bonnie</groupId>
<artifactId>cqlTranslationServer</artifactId>
<packaging>jar</packaging>
<version>2.5.0</version>
<version>2.6.0</version>
<name>cqlTranslationServer</name>

<repositories>
Expand Down Expand Up @@ -200,7 +200,7 @@
</build>

<properties>
<cql.version>3.15.0</cql.version>
<cql.version>3.18.0</cql.version>
<jersey.version>3.1.8</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down

0 comments on commit c92ee66

Please sign in to comment.