Skip to content

Commit

Permalink
Translator 2.11.0 (#38)
Browse files Browse the repository at this point in the history
This updates to CQL Translator to v2.11.0 and bumps dependencies to their latest minor/patch versions (without upgrading any major versions).
  • Loading branch information
cmoesel authored Nov 6, 2023
1 parent 1af2dc7 commit b5ff2fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# fetch basic image
FROM maven:3.9.0-eclipse-temurin-11
FROM maven:3.9.5-eclipse-temurin-11

# application placed into /opt/app
RUN mkdir -p /app
Expand All @@ -19,4 +19,4 @@ EXPOSE 8080

# execute it
# CMD ["mvn", "exec:java"]
CMD ["java", "-jar", "target/cqlTranslationServer-2.1.0.jar", "-d"]
CMD ["java", "-jar", "target/cqlTranslationServer-2.2.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.1.0.jar
java -jar target/cqlTranslationServer-2.2.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.2.0 | 2.11.0 |
| 2.1.0 | 2.10.0 |
| 2.0.0 | 2.7.0 |
| 1.1.0-SNAPSHOT - 1.5.12 | Matches CQL Translation Service version |
Expand Down
10 changes: 5 additions & 5 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.1.0</version>
<version>2.2.0</version>
<name>cqlTranslationServer</name>

<repositories>
Expand Down Expand Up @@ -59,7 +59,7 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.12.1.Final</version>
<version>3.15.6.Final</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -110,7 +110,7 @@
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -175,8 +175,8 @@
</build>

<properties>
<cql.version>2.10.0</cql.version>
<jersey.version>2.39.1</jersey.version>
<cql.version>2.11.0</cql.version>
<jersey.version>2.41</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

0 comments on commit b5ff2fd

Please sign in to comment.