Update README release 0.8.0 (#95)
This commit is contained in:
parent
8120649796
commit
5840d8ff4e
20
README.md
20
README.md
|
|
@ -26,7 +26,7 @@ X.509 and JWT SVIDs and bundles.
|
|||
Download
|
||||
--------
|
||||
|
||||
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.7.0).
|
||||
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.0).
|
||||
|
||||
The dependencies can be added to `pom.xml`
|
||||
|
||||
|
|
@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component:
|
|||
<dependency>
|
||||
<groupId>io.spiffe</groupId>
|
||||
<artifactId>java-spiffe-provider</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0</version>
|
||||
</dependency>
|
||||
```
|
||||
The `java-spiffe-provider` component imports the `java-spiffe-core` component.
|
||||
|
|
@ -45,7 +45,7 @@ To just import the `java-spiffe-core` component:
|
|||
<dependency>
|
||||
<groupId>io.spiffe</groupId>
|
||||
<artifactId>java-spiffe-core</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
@ -53,12 +53,12 @@ Using Gradle:
|
|||
|
||||
Import `java-spiffe-provider`:
|
||||
```gradle
|
||||
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.7.0'
|
||||
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.0'
|
||||
```
|
||||
|
||||
Import `java-spiffe-core`:
|
||||
```gradle
|
||||
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.7.0'
|
||||
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.0'
|
||||
```
|
||||
|
||||
### MacOS Support
|
||||
|
|
@ -68,22 +68,22 @@ Add to your `pom.xml`:
|
|||
<dependency>
|
||||
<groupId>io.spiffe</groupId>
|
||||
<artifactId>grpc-netty-macos</artifactId>
|
||||
<version>0.7.0</version>
|
||||
<version>0.8.0</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
Using Gradle:
|
||||
```gradle
|
||||
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.7.0'
|
||||
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.0'
|
||||
```
|
||||
|
||||
### Note: `java-spiffe-helper` artifact
|
||||
|
||||
As the [java-spiffe-helper](java-spiffe-helper/README.md) artifact is meant to be used as a standalone JAR and not as a Maven dependency,
|
||||
it is not published to Maven Central, but to [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.7.0), for both
|
||||
[Linux](https://github.com/spiffe/java-spiffe/releases/download/v0.7.0/java-spiffe-helper-0.7.0-linux-x86_64.jar) and
|
||||
[MacOS](https://github.com/spiffe/java-spiffe/releases/download/v0.7.0/java-spiffe-helper-0.7.0-osx-x86_64.jar) versions.
|
||||
it is not published to Maven Central, but to [Github releases](https://github.com/spiffe/java-spiffe/releases/tag/v0.8.0), for both
|
||||
[Linux](https://github.com/spiffe/java-spiffe/releases/download/v0.8.0/java-spiffe-helper-0.8.0-linux-x86_64.jar) and
|
||||
[MacOS](https://github.com/spiffe/java-spiffe/releases/download/v0.8.0/java-spiffe-helper-0.8.0-osx-x86_64.jar) versions.
|
||||
|
||||
### Build the JARs
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue