Skip to content

Commit

Permalink
Bump jaybird-fbclient version to 5.0.1.1 and document use of classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed Sep 13, 2024
1 parent 47bde3d commit 38d60f0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions src/docs/asciidoc/chapters/connection/connection.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,7 @@ When using Jaybird 3 and later, you can use a library to provide the Firebird cl
For Windows, Linux, and macOS, you can add the `org.firebirdsql.jdbc:fbclient` dependency on your classpath.
This dependency does not support the `embedded` protocol.

.Native libraries for all supported OS and architectures
[source,xml,subs="verbatim,attributes"]
----
<dependency>
Expand All @@ -471,6 +472,21 @@ This dependency does not support the `embedded` protocol.
</dependency>
----

Since version 5.0.1.1, you can also specify the desired OS, or OS and architecture using the `classifier`:

.Only native libraries for Linux (all supported architectures)
[source,xml,subs="verbatim,attributes"]
----
<dependency>
<groupId>org.firebirdsql.jdbc</groupId>
<artifactId>fbclient</artifactId>
<version>{jaybird-fbclient-version}</artifactId>
<classifier>linux</classifier>
</dependency>
----

See https://github.com/mrotteveel/jaybird-fbclient#os-specific-packages[mrotteveel/jaybird-fbclient] for the available classifiers.

You can also download the library (see https://github.com/mrotteveel/jaybird-fbclient#download[mrotteveel/jaybird-fbclient] for download link) and add it your classpath.

See next sections for other solutions.
Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/jaybird_manual.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Roman Rokytskyy; Mark Rotteveel
:jaybird4-example-version: {jaybird4-full-version}.java11
:jaybird3-full-version: 3.0.12
:jaybird22-full-version: 2.2.15
:jaybird-fbclient-version: 5.0.1.0
:jaybird-fbclient-version: 5.0.1.1
:jaybird-version: 5
:jaybird-full-version: {jaybird5-full-version}
:jaybird-example-version: {jaybird5-example-version}
Expand Down

0 comments on commit 38d60f0

Please sign in to comment.