-
Notifications
You must be signed in to change notification settings - Fork 77
Installation
Artem Dmitriev edited this page Jun 26, 2017
·
3 revisions
The central point, where all project sources are located is Github project, so, if you have Github account, you can easily clone or fork Reveno sources, or download them completely as zip file. There is also release page, where latest released binaries are located.
The current list of available artifacts in Maven consists of:
- reveno-core - includes all Reveno core packages, responsible for engine initialization, transaction processing, etc.
- reveno-metrics - includes packages, responsible for gathering metrics from working engine, and sending them to Graphite, Slf4j, etc.
- reveno-cluster - makes it possible to run Reveno in cluster with Master-Slave architecture, thus providing decent failover ability.
<dependencies>
<dependency>
<groupId>org.reveno</groupId>
<artifactId>reveno-core</artifactId>
<version>1.23</version>
</dependency>
<dependency>
<groupId>org.reveno</groupId>
<artifactId>reveno-cluster</artifactId>
<version>1.23</version>
</dependency>
</dependencies>
dependencies {
compile 'org.reveno:reveno-core:1.23'
compile 'org.reveno:reveno-cluster:1.23'
}