Skip to content

Commit

Permalink
Move evaluator.cli to cqf-fhir-cr-cli (#336)
Browse files Browse the repository at this point in the history
* Move evaluator.cli to cqf-fhir-cr-cli

* Update root pom file
  • Loading branch information
JPercival committed Aug 31, 2023
1 parent 8f4ff72 commit e94af3f
Show file tree
Hide file tree
Showing 1,438 changed files with 32 additions and 1,444 deletions.
16 changes: 8 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"type": "java",
"name": "Debug (EXM 124)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--lu",
Expand All @@ -82,7 +82,7 @@
"type": "java",
"name": "Debug (EXM 130)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--lu",
Expand All @@ -101,7 +101,7 @@
"type": "java",
"name": "Debug (EXM 130 R4)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--lu",
Expand All @@ -120,7 +120,7 @@
"type": "java",
"name": "Debug (EXM 105 R4)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--lu",
Expand All @@ -139,7 +139,7 @@
"type": "java",
"name": "Debug (EXM 104)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--lu",
Expand All @@ -158,7 +158,7 @@
"type": "java",
"name": "Debug (EXM 104 R4)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--lu",
Expand All @@ -177,7 +177,7 @@
"type": "java",
"name": "Debug (EXM 104 R401)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--fv",
Expand All @@ -198,7 +198,7 @@
"type": "java",
"name": "Debug (APHL - Reportable)",
"request": "launch",
"mainClass": "org.opencds.cqf.cql.evaluator.cli.Main",
"mainClass": "org.opencds.cqf.fhir.cr.cli.Main",
"projectName": "evaluator.cli",
"args": [
"--fv",
Expand Down
5 changes: 5 additions & 0 deletions cqf-fhir-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@
<artifactId>cqf-fhir-cr</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opencds.cqf.fhir</groupId>
<artifactId>cqf-fhir-cr-cli</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
14 changes: 5 additions & 9 deletions evaluator.cli/pom.xml → cqf-fhir-cr-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.opencds.cqf.cql</groupId>
<artifactId>evaluator.cli</artifactId>
<groupId>org.opencds.cqf.fhir</groupId>
<artifactId>cqf-fhir-cr-cli</artifactId>
<version>3.0.0-PRE6-SNAPSHOT</version>
<packaging>jar</packaging>

<name>evaluator.cli</name>
<url>https://github.com/cqframework/clinical-reasoning/tree/master</url>
<name>FHIR Clinical Reasoning (CLI)</name>
<description>CLI for running FHIR Clincial Reasoning operations</description>

<parent>
<groupId>org.opencds.cqf.fhir</groupId>
Expand All @@ -18,8 +16,6 @@
<relativePath>../cqf-fhir/pom.xml</relativePath>
</parent>

<description>CQL Evaluator - CLI</description>

<dependencies>
<dependency>
<groupId>org.opencds.cqf.fhir</groupId>
Expand Down Expand Up @@ -123,7 +119,7 @@
</execution>
</executions>
<configuration>
<mainClass>org.opencds.cqf.cql.evaluator.cli.Main</mainClass>
<mainClass>org.opencds.cqf.fhir.cr.cli.Main</mainClass>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package org.opencds.cqf.cql.evaluator.cli;
package org.opencds.cqf.fhir.cr.cli;

import java.util.Objects;

import org.opencds.cqf.cql.evaluator.cli.command.CliCommand;
import org.opencds.cqf.fhir.cr.cli.command.CliCommand;

import picocli.CommandLine;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package org.opencds.cqf.cql.evaluator.cli.command;
package org.opencds.cqf.fhir.cr.cli.command;

import java.io.File;
import java.nio.file.Files;
import java.util.List;
import java.util.concurrent.Callable;

import org.opencds.cqf.cql.evaluator.cli.Main;
import org.opencds.cqf.fhir.cr.cli.Main;

import picocli.CommandLine.Command;
import picocli.CommandLine.Parameters;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.opencds.cqf.cql.evaluator.cli.command;
package org.opencds.cqf.fhir.cr.cli.command;

import org.opencds.cqf.cql.evaluator.cli.version.VersionProvider;
import org.opencds.cqf.fhir.cr.cli.version.VersionProvider;

import picocli.CommandLine.Command;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.opencds.cqf.cql.evaluator.cli.command;
package org.opencds.cqf.fhir.cr.cli.command;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.opencds.cqf.cql.evaluator.cli.version;
package org.opencds.cqf.fhir.cr.cli.version;

import picocli.CommandLine.IVersionProvider;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.opencds.cqf.cql.evaluator.cli;
package org.opencds.cqf.fhir.cr.cli;

import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
Expand Down
Loading

0 comments on commit e94af3f

Please sign in to comment.