Skip to content

Commit

Permalink
Move all necessary event handling dependencies and remove axon-core dep.
Browse files Browse the repository at this point in the history
Move all necessary event handling dependencies and remove axon-core
dependency.

#755
  • Loading branch information
smcvb committed Oct 11, 2018
1 parent c0bab39 commit 653109e
Showing 1 changed file with 74 additions and 16 deletions.
90 changes: 74 additions & 16 deletions messaging/pom.xml
Expand Up @@ -34,20 +34,29 @@
</description>

<dependencies>
<!--TODO temp, should be other way around!-->
<!-- Logging -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>axon-core</artifactId>
<version>${project.version}</version>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>

<!-- Validation -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
<optional>true</optional>
</dependency>

<!-- Event Handling -->
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.2.1</version>
<optional>true</optional>
</dependency>

<!-- Query Handling -->
<dependency>
<groupId>io.projectreactor</groupId>
Expand All @@ -69,8 +78,43 @@
<optional>true</optional>
</dependency>

<!-- Serialization -->
<!-- XML -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.1.0.Final</version>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.2.4.Final</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.4</version>
<scope>test</scope>
</dependency>

<!-- Caching -->
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>1.0.0</version>
<optional>true</optional>
</dependency>

<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.8.1</version>
<optional>true</optional>
</dependency>

<!-- Serialization - XML -->
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
Expand Down Expand Up @@ -119,7 +163,7 @@
</exclusions>
</dependency>

<!-- JSON -->
<!-- Serialization - JSON -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
Expand All @@ -141,19 +185,33 @@
<scope>test</scope>
</dependency>

<!-- Caching -->
<!-- Spring - used for testing only! -->
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>1.0.0</version>
<optional>true</optional>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>2.8.1</version>
<optional>true</optional>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>

</dependencies>
Expand Down

0 comments on commit 653109e

Please sign in to comment.