Skip to content

Commit

Permalink
Up to Java 17 (#142)
Browse files Browse the repository at this point in the history
* up library to java 17
* update documentation
  • Loading branch information
fongie authored Nov 7, 2023
1 parent 6c32fbe commit 07f8b3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Then, fork the repository on GitHub or checkout a new branch, and let's get star

## Prerequisites

You need a development environment for Java 11 or higher, for example an IDE like IntelliJ, Eclipse, etc.
You need a development environment for Java 17 or higher, for example an IDE like IntelliJ, Eclipse, etc.
If you want to run the client against a DiGA API, you will need your own client certificate and private key stores for
encrypting data and establishing connections with the APIs. It is unfortunately not possible for us (the maintainers)
to provide working certificates for testing as we only have our private certificate which we cannot share, for obvious reasons.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Please see the [docs](docs/diga_api.md#Requesting-an-IK-number) folder for more
get a single keystore which you can use as both the private key store file and public health insurance public key store file (see Usage).
* The XML mapping file for the health insurance companies which contains information on endpoints, IK numbers, code prefixes, etc.
[This page](https://kkv.gkv-diga.de/) should provide an up-to-date file. __Important!__ read [here](https://github.com/alex-therapeutics/diga-api-client/wiki/Modifying-the-insurance-company-mapping-file-(Krankenkassenverzeichnis_DiGA.xml)) for the modifications you have to make to this file.
* Java 11 or higher. Do you need Java 8? Submit an issue and tell us! There is still room to make such changes.
* Java 17 or higher.

### Installation
Import it using Maven in your `pom.xml`:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
</developers>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<delombok.output>${project.build.directory}/javadoc-delombok</delombok.output>
<javadoc.generated-sources-path>${project.build.directory}/generated/src/main/java</javadoc.generated-sources-path>
Expand Down

0 comments on commit 07f8b3a

Please sign in to comment.