Skip to content

Commit 6dcb75f

Browse files
authored
Merge pull request #1623 from CMSgov/release/v2026.03.31.01
Deploy Release version v2026.03.31.01 to Prod
2 parents 931309d + d99ca94 commit 6dcb75f

93 files changed

Lines changed: 1289 additions & 616 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
uses: zricethezav/gitleaks-action@6e41781c235feb424ecc3435610dce20ad349a70 # pin@master
2323

2424

25-
- name: Set up JDK 17
25+
- name: Set up JDK 21
2626
uses: actions/setup-java@v4
2727
with:
28-
java-version: "17"
28+
java-version: "21"
2929
distribution: "corretto"
3030

3131
- name: Delete old dependencies (may trigger Snyk vulnerability otherwise)

.github/workflows/draft-new-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.ACTIONS_NICHOLAS_PAT }}
3737

38-
- name: Set up JDK 17
38+
- name: Set up JDK 21
3939
uses: actions/setup-java@v4
4040
with:
41-
java-version: "17"
41+
java-version: "21"
4242
distribution: "corretto"
4343
cache: 'maven'
4444

.java-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17
1+
21

DEVELOPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if you'd like to contribute to qpp-conversion-tool.
1717

1818
The additional prerequisites that were not already outlined in the
1919
[main README][readme] are...
20-
- [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (version `>= 17`). The Java Runtime
20+
- [Java Development Kit](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (version `>= 21`). The Java Runtime
2121
will not suffice.
2222
- [Maven](https://maven.apache.org).
2323

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:17 AS builder
1+
FROM eclipse-temurin:21 AS builder
22

33
ARG MAVEN_VERSION=3.9.6
44
ARG USER_HOME_DIR="/root"
@@ -37,7 +37,7 @@ WORKDIR /usr/src/app/
3737
RUN /usr/local/bin/mvn-entrypoint.sh mvn install -Dmaven.test.skip -Djacoco.skip=true -Dskip.generate=true > /dev/null
3838

3939
# Final stage
40-
FROM eclipse-temurin:17-jre
40+
FROM eclipse-temurin:21-jre
4141

4242
RUN mkdir -p /usr/src/run/
4343
COPY --from=builder /usr/src/app/tools/docker/docker-artifacts /usr/src/run/

DockerfileTest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM maven:3.9.6-eclipse-temurin-17 AS builder
1+
FROM maven:3.9.6-eclipse-temurin-21 AS builder
22

33
COPY ./ /usr/src/app/
44
WORKDIR /usr/src/app/
55

66
RUN mvn install -Dmaven.test.skip -Djacoco.skip=true > /dev/null
77

88
# Final stage
9-
FROM eclipse-temurin:17-jre
9+
FROM eclipse-temurin:21-jre
1010

1111
RUN apt-get update && apt-get install -y dos2unix && rm -rf /var/lib/apt/lists/*
1212

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ Before you can use the qpp-conversion-tool application, you must install and con
1616

1717
[GitHub's Guide to Installing Git](https://help.github.com/articles/set-up-git) is a good source of information.
1818

19-
* [Java Runtime](https://java.com/download) (version `17`).
19+
* [Java Runtime](https://java.com/download) (version `21`).
2020

2121
It is important that you have the right version of `java` on your path.
2222

2323
```shell
24-
# When you run 'java -version', you should get 17. For example:
24+
# When you run 'java -version', you should get 21. For example:
2525
java -version
26-
java version "17"
26+
java version "21"
2727
...
2828
```
2929

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

3434
* [Maven](https://maven.apache.org) (version `3.9.6`).

acceptance-tests/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>acceptance-tests</artifactId>
55
<groupId>gov.cms.qpp.conversion</groupId>
6-
<version>2026.03.13.01-RELEASE</version>
6+
<version>2026.03.31.01-RELEASE</version>
77
<name>conversion-tests</name>
88
<packaging>jar</packaging>
99
<properties>
10-
<java.version>17</java.version>
10+
<java.version>21</java.version>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<cucumber.version>4.2.5</cucumber.version>
1313
</properties>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.seleniumhq.selenium</groupId>
3232
<artifactId>selenium-java</artifactId>
33-
<version>4.1.2</version>
33+
<version>4.14.0</version>
3434
</dependency>
3535

3636
<dependency>

commandline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>2026.03.13.01-RELEASE</version>
9+
<version>2026.03.31.01-RELEASE</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>gov.cms.qpp.conversion</groupId>
88
<artifactId>qpp-conversion-tool-parent</artifactId>
9-
<version>2026.03.13.01-RELEASE</version>
9+
<version>2026.03.31.01-RELEASE</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)