-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from digipost/readme-fixup
Readme fixup
- Loading branch information
Showing
3 changed files
with
36 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,41 @@ | ||
# Posten Signering – Java client Library | ||
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/no.digipost.signature/signature-api-client-java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/no.digipost.signature/signature-api-client-java) | ||
[![javadoc](https://javadoc.io/badge2/no.digipost.signature/signature-api-client-java/javadoc.svg?logo=java&color=yellow)](https://javadoc.io/doc/no.digipost.signature/signature-api-client-java) | ||
![](https://github.com/digipost/signature-api-client-java/workflows/Build%20and%20deploy/badge.svg) | ||
[![License](https://img.shields.io/badge/license-Apache%202-blue)](https://github.com/digipost/signature-api-client-java/blob/main/LICENCE) | ||
|
||
This repo is the Java client library for integrating with Posten signering. Please see [signature-api-client-dotnet](https://github.com/digipost/signature-api-client-dotnet) for the C# version. | ||
This repo is the Java client library for integrating with **Posten signering**. | ||
|
||
## 📕 Documentation | ||
If you are looking for the C# variant of this library, please see [signature-api-client-dotnet](https://github.com/digipost/signature-api-client-dotnet). | ||
|
||
## Documentation | ||
|
||
Get started by [reading the documentation](http://signering-docs.rtfd.io/). | ||
|
||
## Releasing (only for Digipost members) | ||
|
||
See docs/systemer/open-source-biblioteker.md | ||
|
||
## Dependency | ||
|
||
The recommended way to declare dependency on the library is to utilize the [BOM](https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#bill-of-materials-bom-poms). With Maven, this is declared like this: | ||
|
||
```xml | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>no.digipost.signature</groupId> | ||
<artifactId>signature-api-client-bom</artifactId> | ||
<version>7.0.1</version> <!-- replace with any later version --> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
... | ||
``` | ||
|
||
And depend directly on the library artifact (without any specified version, since this is supplied by the BOM artifact above) | ||
```xml | ||
<dependencies> | ||
<dependency> | ||
<groupId>no.digipost.signature</groupId> | ||
<artifactId>signature-api-client-java</artifactId> | ||
</dependency> | ||
... | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters