Skip to content

Commit

Permalink
chore: support Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Jun 11, 2024
1 parent 7cfabf1 commit 434d120
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mvn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
java: [11, 20]
java: [8, 11, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lighter EO code.

# How to use

To run the plugin you need at least Maven 3.1.+ and Java 11+.
To run the plugin you need at least Maven 3.1.+ and Java 8+.
The plugin provides two optimizations:

### FUSE
Expand Down Expand Up @@ -154,4 +154,4 @@ before sending us your pull request please run full Maven build:
$ mvn clean install -Pqulice
```

You will need [Maven 3.3+](https://maven.apache.org) and Java 11+ installed.
You will need [Maven 3.3+](https://maven.apache.org) and Java 8+ installed.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ SOFTWARE.
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.version>3.9.6</maven.version>
<skipITs/>
</properties>
Expand Down

0 comments on commit 434d120

Please sign in to comment.