Skip to content

Commit

Permalink
#3589 java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 2, 2024
1 parent 9f8f439 commit c2b465c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ 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 8+ installed.
You will need [Maven 3.3+](https://maven.apache.org) and Java 11+ installed.

## Special thanks

Expand Down
2 changes: 1 addition & 1 deletion eo-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ create a file `pom.xml` with this content (it's just a sample):
Then, you just run `mvn clean test` (you will need [Maven 3.3+](https://maven.apache.org/))
and the `.eo` file will be parsed to `.xml` files, transformed to `.java` files,
and then compiled to `.class` files. You can see them all in the `target` directory.
You will need Java 8+.
You will need Java 11+.

## How it Works?

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ SOFTWARE.
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration combine.self="override">
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
<compilerArgs>
<arg>-Xpkginfo:always</arg>
</compilerArgs>
Expand Down

0 comments on commit c2b465c

Please sign in to comment.