Artifact relocation and release 0.8.0

Stefan Kalscheuer 2019-03-24 12:37:31 +01:00
parent 9c706defe9
commit e27582de15

@ -2,7 +2,7 @@
## Installation ## Installation
[![Maven Central](https://img.shields.io/maven-central/v/de.stklcode.jvault/connector.svg)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.stklcode.jvault%22%20AND%20a%3A%22connector%22) [![Maven Central](https://img.shields.io/maven-central/v/de.stklcode.jvault/jvault-connector.svg)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.stklcode.jvault%22%20AND%20a%3A%22jvault-connector%22)
The connector is published at Maven Central and may be included into your project easily. The connector is published at Maven Central and may be included into your project easily.
@ -11,18 +11,17 @@ The connector is published at Maven Central and may be included into your projec
```xml ```xml
<dependency> <dependency>
<groupId>de.stklcode.jvault</groupId> <groupId>de.stklcode.jvault</groupId>
<artifactId>connector</artifactId> <artifactId>jvault-connector</artifactId>
<version>0.7.1</version> <version>0.8.0</version>
</dependency> </dependency>
``` ```
### Gradle Dependency ### Gradle Dependency
```groovy ```groovy
compile group: 'de.stklcode.jvault', name: 'connector', version: '0.7.1' compile group: 'de.stklcode.jvault', name: 'jvault-connector', version: '0.8.0'
``` ```
### SBT Dependency ### SBT Dependency
``` ```
libraryDependencies += "de.stklcode.jvault" % "connector" % "0.7.1" libraryDependencies += "de.stklcode.jvault" % "jvault-connector" % "0.8.0"
```
```