Skip to content

Commit

Permalink
Merge pull request #1391 from CMSgov/release/v2023.3.0
Browse files Browse the repository at this point in the history
Release v2023.3.0
  • Loading branch information
saquino0827 authored Dec 11, 2023
2 parents 20a1266 + 3b13910 commit 990fa0c
Show file tree
Hide file tree
Showing 15 changed files with 21,494 additions and 21,489 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Before you can use the qpp-conversion-tool application, you must install and con
```

Sometimes the Java Runtime installer doesn't update your path. So you must do it manually. Alternatively, download and install
the [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (version `>= 1.8`). The JDK is
the [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (version `>= 11`). The JDK is
better at updating your path.

* [Maven](https://maven.apache.org) (version `>= 3.8.4`).
Expand Down Expand Up @@ -70,7 +70,7 @@ directory.

```shell
# Build the Docker image and run the container using docker-compose.
docker-compose -f ./docker-compose.test.yaml up
docker-compose -f ./docker-compose.test.yaml --build up
```

#### Invoking the Endpoint
Expand Down
2 changes: 1 addition & 1 deletion acceptance-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>acceptance-tests</artifactId>
<groupId>gov.cms.qpp.conversion</groupId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<name>conversion-tests</name>
<packaging>jar</packaging>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion commandline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
50 changes: 25 additions & 25 deletions commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -50,30 +50,30 @@
<name>!env.CI</name>
</property>
</activation>
<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>com.googlecode.maven-download-plugin</groupId>-->
<!-- <artifactId>download-maven-plugin</artifactId>-->
<!-- <version>1.6.6</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>get-measure-data</id>-->
<!-- <phase>validate</phase>-->
<!-- <goals>-->
<!-- <goal>wget</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- <url>https://raw.githubusercontent.com/CMSgov/qpp-measures-data/develop/measures/2022/measures-data.json</url>-->
<!-- <skipCache>true</skipCache>-->
<!-- <overwrite>true</overwrite>-->
<!-- <outputDirectory>${basedir}/src/main/resources</outputDirectory>-->
<!-- </configuration>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
<build>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.6.6</version>
<executions>
<execution>
<id>get-measure-data</id>
<phase>validate</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://raw.githubusercontent.com/CMSgov/qpp-measures-data/develop/measures/2023/measures-data.json</url>
<skipCache>true</skipCache>
<overwrite>true</overwrite>
<outputDirectory>${basedir}/src/main/resources</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

Expand Down
42,851 changes: 21,428 additions & 21,423 deletions commons/src/main/resources/measures-data.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -169,7 +169,7 @@
<dependency>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>commons</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<scope>compile</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,30 @@
import gov.cms.qpp.conversion.PathSource;
import gov.cms.qpp.conversion.correlation.ValueOriginMapper.Association;
import gov.cms.qpp.conversion.encode.JsonWrapper;

class QrdaQppAssociationTest {

private static JsonWrapper qpp;
private static ValueOriginMapper mapper = new ValueOriginMapper();

@BeforeAll
static void setup() {
Path path = Paths.get("../qrda-files/valid-QRDA-III-latest.xml");
Context context = new Context();
Converter converter = new Converter(new PathSource(path), context);

qpp = converter.transform();
}

@Test
void testAssociation() {
mapper.mapItJsW("$", qpp);
mapper.writeAssociations();

List<Association> associations = mapper.getAssociations();
assertWithMessage("registered associations does not match expectation")
.that(associations).isNotEmpty();
}

}
//
//class QrdaQppAssociationTest {
//
// private static JsonWrapper qpp;
// private static ValueOriginMapper mapper = new ValueOriginMapper();
//
// @BeforeAll
// static void setup() {
// Path path = Paths.get("../qrda-files/valid-QRDA-III-latest.xml");
// Context context = new Context();
// Converter converter = new Converter(new PathSource(path), context);
//
// qpp = converter.transform();
// }
//
// @Test
// void testAssociation() {
// mapper.mapItJsW("$", qpp);
// mapper.writeAssociations();
//
// List<Association> associations = mapper.getAssociations();
//
// assertWithMessage("registered associations does not match expectation")
// .that(associations).isNotEmpty();
// }
//
//}
2 changes: 1 addition & 1 deletion generate-race-cpcplus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>qpp-conversion-tool-parent</artifactId>
<groupId>gov.cms.qpp.conversion</groupId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion generate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>qpp-conversion-tool-parent</artifactId>
<groupId>gov.cms.qpp.conversion</groupId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<packaging>pom</packaging>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<name>QPP Conversion Tool</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion qpp-data-restoration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-data-restoration</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<packaging>jar</packaging>

<name>qpp-data-restoration</name>
Expand Down
2 changes: 1 addition & 1 deletion qrda3-update-measures/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>qpp-conversion-tool-parent</artifactId>
<groupId>gov.cms.qpp.conversion</groupId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion rest-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion test-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion test-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>gov.cms.qpp.conversion</groupId>
<artifactId>qpp-conversion-tool-parent</artifactId>
<version>2023.2.0-RELEASE</version>
<version>2023.3.0-RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 990fa0c

Please sign in to comment.