Java-based Event Store for implementing CQRS and Event Sourcing.
Artifacts can be found on JitPack. Basically, you just need to add JitPack repo and add the dependency. Using Gradle as an example:
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
dependencies {
compile 'com.github.manuelp:jevsto:[X.Y.Z]'
}