Revert "Revert "Add support for Oracle JDK (#401)" (#421)" (#450)

This reverts commit c3ac5dd0ed8db40fedb61c32fbe677e6b355e94c.
This commit is contained in:
Dmitry Shibanov
2023-02-07 16:29:21 +01:00
committed by GitHub
parent 9b86bbe88a
commit 3f07048e3d
9 changed files with 359 additions and 2 deletions

View File

@ -6,6 +6,7 @@
- [Liberica](#Liberica)
- [Microsoft](#Microsoft)
- [Amazon Corretto](#Amazon-Corretto)
- [Oracle](#Oracle)
- [Installing custom Java package type](#Installing-custom-Java-package-type)
- [Installing custom Java architecture](#Installing-custom-Java-architecture)
- [Installing custom Java distribution from local file](#Installing-Java-from-local-file)
@ -110,6 +111,19 @@ steps:
- run: java -cp java HelloWorldApp
```
### Oracle
**NOTE:** Oracle Java SE Development Kit is only available for version 17 and later.
```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'
- run: java -cp java HelloWorldApp
```
## Installing custom Java package type
```yaml
steps: