Skip to content

Commit

Permalink
Looks like Mirth only supports Java 8. Sigh.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmay4 committed Feb 26, 2024
1 parent 44ed733 commit f37011e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
java-version: '8'
cache: 'maven'

- name: Set executable permission for Maven Wrapper
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
java-version: '8'
cache: 'maven'
gpg-private-key: ${{ secrets.SEER_GPG_SECRET_KEY }}
gpg-passphrase: ${{ secrets.SEER_GPG_PASSWORD }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
java-version: '8'
cache: 'maven'

- name: Set executable permission for Maven Wrapper
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<name>reportability-screener</name>

<properties>
<java.version>17</java.version>
<java.version>8</java.version>

<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/imsweb/ReportabilityScreener.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class ReportabilityScreener {
private static final Logger LOG = LoggerFactory.getLogger(ReportabilityScreener.class);

public String getReportability() {
LOG.info("in getReportability");
LOG.debug("in getReportability");

return "test";
}
Expand Down

0 comments on commit f37011e

Please sign in to comment.