Skip to content

Commit

Permalink
Revert SAT to use Java 11 (#451)
Browse files Browse the repository at this point in the history
* Revert SAT to use Java 11

Signed-off-by: Kai Kreuzer <[email protected]>
  • Loading branch information
kaikreuzer authored May 22, 2023
1 parent 1c9e3c2 commit e4e1119
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '17' ]
java: [ '11' ]
maven: [ '3.8.6' ]
os: [ 'ubuntu-22.04' ]
name: Build (Java ${{ matrix.java }}, ${{ matrix.os }})
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<oh.java.version>17</oh.java.version>
<oh.java.version>11</oh.java.version>
<maven.compiler.source>${oh.java.version}</maven.compiler.source>
<maven.compiler.target>${oh.java.version}</maven.compiler.target>
<maven.compiler.compilerVersion>${oh.java.version}</maven.compiler.compilerVersion>
Expand Down Expand Up @@ -449,7 +449,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<source>17</source>
<source>11</source>
<outputDirectory>${project.build.directory}/javadoc</outputDirectory>
<doclint>all,-missing</doclint>
<failOnError>true</failOnError>
Expand Down Expand Up @@ -478,7 +478,7 @@
<configuration>
<rules>
<requireJavaVersion>
<version>[17.0,18.0)</version>
<version>[11.0,12.0)</version>
</requireJavaVersion>
</rules>
</configuration>
Expand Down

0 comments on commit e4e1119

Please sign in to comment.