Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update compiler release to Java 17.
Update readme.
  • Loading branch information
Jacek Gębal committed Apr 23, 2026
commit 15332eddad6d01993059e9e895e6fde37283b7a9
5 changes: 3 additions & 2 deletions .github/workflows/api-snapshot-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-java@v5
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'

- name: Install utplsql
run: .github/scripts/install_utplsql.sh
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
matrix:
utplsql_version: ["v3.2.01","develop"]
utplsql_file: ["utPLSQL"]
jdk: ['11', '17', '21', '25']
jdk: ['17', '21', '25']
services:
oracle:
image: gvenzl/oracle-free:23-slim-faststart
Expand All @@ -52,7 +52,9 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v5

- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{matrix.jdk}}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v5

- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 11
java-version: '21'

- name: Build Release
run: mvn package appassembler:assemble assembly:single checksum:files -DskipTests
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ You can also download all development versions from [Bintray](https://bintray.co


## Requirements
* [Java SE Runtime Environment 8](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) or newer
* [Java SE Runtime Environment 17](https://www.oracle.com/java/technologies/downloads/) or newer
* When using reporters for Sonar or Coveralls client needs to be invoked from project's root directory.

## Compatibility
The latest CLI is always compatible with all database frameworks of the same major version.
For example CLI-3.1.0 is compatible with database framework 3.0.0-3.1.* but not with database framework 2.x.
The latest CLI is compatible with database frameworks of the same **minor** version.
For example CLI-3.2.0 is compatible with database framework 3.2.* but not necessarily with framework 3.1.* or 3.3.*

## Localization and NLS settings
utPLSQL-cli will use the environment variables "LC_ALL" or "LANG" to change the locale and therefore the client NLS settings.
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
<url>https://github.com/utPLSQL/utPLSQL-cli</url>

<properties>
<utplsql-java-api.version>3.2.3</utplsql-java-api.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.release>17</maven.compiler.release>

<utplsql-java-api.version>3.2.3</utplsql-java-api.version>

<junit.jupiter.version>5.12.2</junit.jupiter.version>
<picocli.version>4.7.7</picocli.version>
<logback.version>1.5.18</logback.version>
Expand Down
Loading