2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-14 08:12:38 -04:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-cucumber</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-cucumber</name>
|
|
|
|
<packaging>jar</packaging>
|
2019-12-05 09:56:52 -05:00
|
|
|
<description>Demo project for Spring Boot</description>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2023-11-24 11:18:04 -05:00
|
|
|
<artifactId>parent-boot-3</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-11-24 11:18:04 -05:00
|
|
|
<relativePath>../parent-boot-3</relativePath>
|
2019-10-31 21:43:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-02 13:26:00 -04:00
|
|
|
<groupId>io.cucumber</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>cucumber-core</artifactId>
|
2020-10-02 13:26:00 -04:00
|
|
|
<version>${cucumber.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-02 13:26:00 -04:00
|
|
|
<groupId>io.cucumber</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>cucumber-java</artifactId>
|
2020-10-02 13:26:00 -04:00
|
|
|
<version>${cucumber.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-02 13:26:00 -04:00
|
|
|
<groupId>io.cucumber</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>cucumber-junit</artifactId>
|
2020-10-02 13:26:00 -04:00
|
|
|
<version>${cucumber.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-02 13:26:00 -04:00
|
|
|
<groupId>io.cucumber</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>cucumber-spring</artifactId>
|
2020-10-02 13:26:00 -04:00
|
|
|
<version>${cucumber.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-10-27 14:31:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
<version>${junit-vintage-engine.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-io -->
|
|
|
|
<dependency>
|
2023-11-24 11:18:04 -05:00
|
|
|
<groupId>commons-io</groupId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2023-11-24 11:18:04 -05:00
|
|
|
<!-- The main class to start by executing java -jar -->
|
|
|
|
<start-class>com.baeldung.SpringDemoApplication</start-class>
|
2023-10-27 14:31:28 -04:00
|
|
|
<cucumber.version>7.14.0</cucumber.version>
|
2023-11-24 11:18:04 -05:00
|
|
|
<junit-vintage-engine.version>5.10.1</junit-vintage-engine.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-14 08:12:38 -04:00
|
|
|
</project>
|