Skip to content

Commit

Permalink
Update README and GitHub action builds
Browse files Browse the repository at this point in the history
- Update GitHub action build workflow to build with Java 17
- Jenkins still builds with java 11 (so we publish also the jar built with 11 to avoid any possible backwards compatibility issues)
  • Loading branch information
ndoschek committed Jan 11, 2023
1 parent 2599866 commit 1321de6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up JDK 11
uses: actions/setup-java@v1
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
java-version: 17

- name: Build with Maven on Windows
if: matrix.os == 'windows-2019'
Expand All @@ -44,10 +45,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up JDK 11
uses: actions/setup-java@v1
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
java-version: 17

- name: Build with Maven on Windows
if: matrix.os == 'windows-2019'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ For more information, please visit the [EMF.cloud Website](https://www.eclipse.o

The following libraries/frameworks need to be installed on your system:

| | |
| ---------------------------------------------------------------------------- | --------- |
| [Java](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html) | `11` |
| [Maven](https://maven.apache.org/) | `<=3.8.4` |
| | | |
| ---------------------------------------------------------------------------- | --------- | ------------------------------------------------ |
| [Java](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html) | `>= 11` | we support the two last LTS versions (11 and 17) |
| [Maven](https://maven.apache.org/) | `<=3.8.4` | |

_Remark:_ There is currently a build problem with the latest Maven version `3.8.5`, which causes a build error for the `p2` build. (See also issues #201 and will be investigated and fixed with issue #203).

Expand Down

0 comments on commit 1321de6

Please sign in to comment.