Skip to content

Instantly share code, notes, and snippets.

@cer
Created February 22, 2017 13:49
Show Gist options
  • Save cer/fd0c25f1b4d2d66c347bca0913b51368 to your computer and use it in GitHub Desktop.
Save cer/fd0c25f1b4d2d66c347bca0913b51368 to your computer and use it in GitHub Desktop.
Eventuate Local pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.eventuate.examples.mavenexample</groupId>
<version>0.1.0-SNAPSHOT</version>
<artifactId>Maven-Example</artifactId>
<packaging>jar</packaging>
<name>maven example</name>
<repositories>
<repository>
<id>jcenter</id>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<properties>
<eventuateClientVersion>0.16.0.RELEASE</eventuateClientVersion>
<eventuateLocalVersion>0.11.0.RELEASE</eventuateLocalVersion>
</properties>
<dependencies>
<dependency>
<groupId>io.eventuate.client.java</groupId>
<artifactId>eventuate-client-java-spring</artifactId>
<version>${eventuateClientVersion}</version>
</dependency>
<dependency>
<groupId>io.eventuate.local.java</groupId>
<artifactId>eventuate-local-java-jdbc</artifactId>
<version>${eventuateLocalVersion}</version>
</dependency>
<dependency>
<groupId>io.eventuate.local.java</groupId>
<artifactId>eventuate-local-java-embedded-cdc-autoconfigure</artifactId>
<version>${eventuateLocalVersion}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment