2017-03-08 10:45:51 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 20:32:54 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-04-26 18:07:47 +05:30
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>axon</artifactId>
|
2018-11-30 22:16:08 +05:30
|
|
|
<name>axon</name>
|
2018-12-18 14:43:32 +01:00
|
|
|
<description>Basic Axon Framework with Spring Boot configuration tutorial</description>
|
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2018-12-18 14:43:32 +01:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2018-04-26 18:07:47 +05:30
|
|
|
</parent>
|
2017-03-08 10:45:51 +01:00
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.axonframework</groupId>
|
2018-12-31 13:45:58 +01:00
|
|
|
<artifactId>axon-spring-boot-starter</artifactId>
|
2018-04-26 18:07:47 +05:30
|
|
|
<version>${axon.version}</version>
|
2018-12-18 14:43:32 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.axonframework</groupId>
|
|
|
|
<artifactId>axon-server-connector</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-04-26 18:07:47 +05:30
|
|
|
</dependency>
|
2018-12-18 14:43:32 +01:00
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>org.axonframework</groupId>
|
2018-12-18 14:43:32 +01:00
|
|
|
<artifactId>axon-test</artifactId>
|
2018-04-26 18:07:47 +05:30
|
|
|
<version>${axon.version}</version>
|
2018-12-18 14:43:32 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
2019-02-04 00:06:11 +05:30
|
|
|
<version>${spring-boot.version}</version>
|
2018-12-18 14:43:32 +01:00
|
|
|
<scope>compile</scope>
|
2018-04-26 18:07:47 +05:30
|
|
|
</dependency>
|
2018-12-18 15:15:23 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2018-12-18 15:16:31 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2018-04-26 18:07:47 +05:30
|
|
|
</dependencies>
|
2017-03-08 10:45:51 +01:00
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<properties>
|
2018-12-18 14:43:32 +01:00
|
|
|
<axon.version>4.0.3</axon.version>
|
2018-04-26 18:07:47 +05:30
|
|
|
</properties>
|
2017-03-08 10:45:51 +01:00
|
|
|
|
|
|
|
</project>
|