This Maven plugin provides goals that start/stop the event store.
###Getting started An example how to use it can be found here: test-project
Remember to name your test class according to Maven Failsafe Plugin's naming pattern.
To execute your integration test use:
mvn clean verify
or mvn verify
###Snapshots
Snapshots can be found on the OSS Sonatype Snapshots Repository.
Add the following to your .m2/settings.xml to enable snapshots in your Maven build:
<pluginRepository>
<id>sonatype.oss.snapshots</id>
<name>Sonatype OSS Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>