Skip to content

Commit b0c0d9c

Browse files
Merge branch 'jlc/v0.1-release'
2 parents 9c2236d + 282fd2a commit b0c0d9c

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

exonum-light-client/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following table shows versions compatibility:
1414

1515
| Light Client | Exonum | Exonum Java |
1616
|--------------|--------|-------------|
17-
| 0.1 | 0.10.* | 0.4 |
17+
| 0.1.0 | 0.10.* | 0.4 |
1818

1919
## Prerequisites
2020
- Java 8 or above is required for using this client
@@ -26,12 +26,12 @@ If you are using Maven, add this to your _pom.xml_ file
2626
<dependency>
2727
<groupId>com.exonum.client</groupId>
2828
<artifactId>exonum-light-client</artifactId>
29-
<version>0.1-SNAPSHOT</version>
29+
<version>0.1.0</version>
3030
</dependency>
3131
```
3232
If you are using Gradle, add this to your dependencies
3333
```Groovy
34-
compile 'com.exonum.client:exonum-light-client:0.1-SNAPSHOT'
34+
compile 'com.exonum.client:exonum-light-client:0.1.0'
3535
```
3636

3737
## Examples

exonum-light-client/pom.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,30 @@
4141
</developer>
4242
</developers>
4343

44+
<scm>
45+
<connection>scm:git:https://github.com/exonum/exonum-java-binding.git</connection>
46+
<developerConnection>scm:git:[email protected]:/exonum/exonum-java-binding.git</developerConnection>
47+
<url>https://github.com/exonum/exonum-java-binding</url>
48+
<tag>HEAD</tag>
49+
</scm>
50+
<issueManagement>
51+
<system>github</system>
52+
<url>https://github.com/exonum/exonum-java-binding/issues</url>
53+
</issueManagement>
54+
<distributionManagement>
55+
<snapshotRepository>
56+
<id>ossrh</id>
57+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
58+
</snapshotRepository>
59+
<repository>
60+
<id>ossrh</id>
61+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
62+
</repository>
63+
</distributionManagement>
64+
4465
<properties>
4566
<!-- Project configuration -->
46-
<ejb.version>0.5-SNAPSHOT</ejb.version>
67+
<ejb.version>0.4.0</ejb.version>
4768
<java.compiler.source>8</java.compiler.source>
4869
<java.compiler.target>8</java.compiler.target>
4970
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)