mirror of
https://github.com/fluencelabs/jabci
synced 2025-04-25 14:52:20 +00:00
updating readme
This commit is contained in:
parent
19d3f573e1
commit
2db4a8ff49
33
Readme.md
33
Readme.md
@ -9,41 +9,12 @@ A Java implementation of the Tendermint Application BlockChain Interface ([ABCI]
|
|||||||
Check out [StartupExampleDummy.java](https://github.com/jTendermint/jabci/blob/master/src/main/java/com/github/jtendermint/jabci/StartupExampleDummy.java) or [JavaCounter.java](https://github.com/jTendermint/jabci/blob/master/src/main/java/com/github/jtendermint/jabci/JavaCounter.java) for examples.
|
Check out [StartupExampleDummy.java](https://github.com/jTendermint/jabci/blob/master/src/main/java/com/github/jtendermint/jabci/StartupExampleDummy.java) or [JavaCounter.java](https://github.com/jTendermint/jabci/blob/master/src/main/java/com/github/jtendermint/jabci/JavaCounter.java) for examples.
|
||||||
|
|
||||||
#### Maven integration
|
#### Maven integration
|
||||||
jABCI v0.12.0 Release is now available via maven central. Use the following dependency to include the latest release:
|
jABCI v0.12.0.2 Release is now available via maven central. Use the following dependency to include the latest release:
|
||||||
```xml
|
```xml
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.jtendermint</groupId>
|
<groupId>com.github.jtendermint</groupId>
|
||||||
<artifactId>jabci</artifactId>
|
<artifactId>jabci</artifactId>
|
||||||
<version>0.12.0</version>
|
<version>0.12.0.2</version>
|
||||||
</dependency>
|
|
||||||
```
|
|
||||||
|
|
||||||
Development will move onto a dedicated `develop` branch in the short term and it's artifacts will be available in Central's snapshot repository
|
|
||||||
|
|
||||||
The current snapshot repository is: `https://oss.sonatype.org/content/repositories/snapshots/` which can be used by adding the repository:
|
|
||||||
```xml
|
|
||||||
<repository>
|
|
||||||
<id>snapshots-repo</id>
|
|
||||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
||||||
<releases><enabled>false</enabled></releases>
|
|
||||||
<snapshots><enabled>true</enabled></snapshots>
|
|
||||||
</repository>
|
|
||||||
```
|
|
||||||
|
|
||||||
Use the following dependency to include current snapshot of jABCI in your project:
|
|
||||||
```xml
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.jtendermint</groupId>
|
|
||||||
<artifactId>jabci</artifactId>
|
|
||||||
<version>0.12.0</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
<!-- you might want to exclude slf4j, depending on your setup -->
|
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-simple</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user