2017-03-27 15:21:03 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-04-26 02:50:35 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-state-machine</artifactId>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2017-03-27 15:21:03 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.statemachine</groupId>
|
|
|
|
<artifactId>spring-statemachine-core</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${spring-statemachine-core.version}</version>
|
2017-03-27 15:21:03 -04:00
|
|
|
</dependency>
|
2017-03-30 16:27:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${spring-test.version}</version>
|
2017-03-30 16:27:22 -04:00
|
|
|
</dependency>
|
2017-03-28 02:17:00 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${jayway.awaitility.version}</version>
|
2017-03-28 02:17:00 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-03-27 15:21:03 -04:00
|
|
|
</dependencies>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
|
|
|
<properties>
|
2018-04-26 02:50:35 -04:00
|
|
|
<spring-statemachine-core.version>1.2.3.RELEASE</spring-statemachine-core.version>
|
2018-04-26 08:37:47 -04:00
|
|
|
<spring-test.version>4.3.7.RELEASE</spring-test.version>
|
|
|
|
<jayway.awaitility.version>1.7.0</jayway.awaitility.version>
|
2018-04-26 02:50:35 -04:00
|
|
|
</properties>
|
2017-03-28 02:17:00 -04:00
|
|
|
|
2017-03-27 15:21:03 -04:00
|
|
|
</project>
|