Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build & test
on:
push:
branches-ignore: [ main ]
branches: [ develop ]
pull_request:
branches: [ develop ]
workflow_dispatch:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ This is a Maven Library project, you can add on your Java project as a dependenc
<dependency>
<groupId>org.utplsql</groupId>
<artifactId>utplsql-java-api</artifactId>
<version>3.1.16</version>
<version>3.2.3</version>
</dependency>
```

## Compatibility
The latest Java-API is always compatible with all database frameworks of the same major version.
For example API-3.0.4 is compatible with database framework 3.0.0-3.1.* but not with database framework 2.x.
The latest Java-API is always compatible with database frameworks of the same minor version.
For example API-3.2.3 is compatible with database framework 3.2 but not with database framework 3.0 or 3.3

It is although recommended to always use the latest release of the API to build your tools for utPLSQL.

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

<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.release>17</maven.compiler.release>

<junit.jupiter.version>5.12.2</junit.jupiter.version>
<oracle.jdbc.version>23.7.0.25.01</oracle.jdbc.version>

Expand Down
Loading