Skip to content

Commit

Permalink
Merge pull request #9 from hossenlopp/update_1.3.10
Browse files Browse the repository at this point in the history
Update for 1.3.10 release for CQL-to-ELM
  • Loading branch information
cmoesel authored Sep 27, 2018
2 parents fa1ac9b + d019cc7 commit 6c9260d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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-1.2.20-jar-with-dependencies.jar", "-d"]
CMD ["java", "-jar", "target/cqlTranslationServer-1.3.10-jar-with-dependencies.jar", "-d"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Build:

Executed via the command line:

java -jar target/cqlTranslationServer-1.2.20-jar-with-dependencies.jar
java -jar target/cqlTranslationServer-1.3.10-jar-with-dependencies.jar

Example usage via HTTP request:

Expand Down
14 changes: 7 additions & 7 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>1.2.20</version>
<version>1.3.10</version>
<name>cqlTranslationServer</name>

<repositories>
Expand Down Expand Up @@ -54,32 +54,32 @@
<dependency>
<groupId>info.cqframework</groupId>
<artifactId>cql</artifactId>
<version>1.2.20</version>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>info.cqframework</groupId>
<artifactId>model</artifactId>
<version>1.2.20</version>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>info.cqframework</groupId>
<artifactId>cql-to-elm</artifactId>
<version>1.2.20</version>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>info.cqframework</groupId>
<artifactId>elm</artifactId>
<version>1.2.20</version>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>info.cqframework</groupId>
<artifactId>quick</artifactId>
<version>1.2.20</version>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>info.cqframework</groupId>
<artifactId>qdm</artifactId>
<version>1.2.20</version>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private CqlTranslator getTranslator(File cql, boolean disablePromotion) {
List<Options> optionsList = new ArrayList<Options>();
optionsList.add(Options.EnableAnnotations);
if (disablePromotion) {
optionsList.add(Options.DisablePromotion);
optionsList.add(Options.DisableListPromotion);
}
Options[] options = optionsList.toArray(new Options[optionsList.size()]);
return CqlTranslator.fromFile(cql, modelManager, libraryManager, options);
Expand Down

0 comments on commit 6c9260d

Please sign in to comment.