Fixed wrong versioning in maven example.

Newer versions of the lib don't prefix the version number with a 'v' letter. Using the code from the example fails on maven build.
This commit is contained in:
Wlad Meixner 2018-01-19 10:04:24 +01:00 committed by GitHub
parent 7613eb2f63
commit d4a7641125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ Add this in your module `pom.xml` file:
<dependency>
<groupId>com.github.iotaledger</groupId>
<artifactId>iota~lib~java</artifactId>
<version>v0.9.10</version>
<version>0.9.10</version>
</dependency>
```