Skip to content

Commit

Permalink
Downgrade Java from version 11 to 8 (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickGotthard authored Mar 11, 2023
1 parent 7c40adc commit 01eb02b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-java@v3.10.0
with:
distribution: temurin
java-version: 11
java-version: 8
cache: maven

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-java@v3.10.0
with:
distribution: temurin
java-version: 11
java-version: 8
cache: maven
server-id: ossrh
server-username: MAVEN_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</developers>

<properties>
<java.version>11</java.version>
<java.version>8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<revision>0.0.0-SNAPSHOT</revision>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void parseRFC822DateTimeWithTimeZoneIsOk() throws Exception {

assertEquals(
c.getTime(),
DateParser.parseRFC822("Sa., 28 März 20 09:12:38 MEZ", Locale.GERMANY)
DateParser.parseRFC822("Sa, 28 Mär 20 09:12:38 MEZ", Locale.GERMANY)
);
}
}

0 comments on commit 01eb02b

Please sign in to comment.