|
21 | 21 |
|
22 | 22 | <properties>
|
23 | 23 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
24 |
| - <cucumber.version>7.18.0</cucumber.version> |
25 |
| - <cucumber.jutils.version>9.21</cucumber.jutils.version> |
| 24 | + <cucumber.jutils.version>9.24</cucumber.jutils.version> |
| 25 | + <cucumber.bom.version>7.21.1</cucumber.bom.version> |
| 26 | + <junit.bom.version>5.12.0</junit.bom.version> |
| 27 | + <jackson.bom.version>2.18.3</jackson.bom.version> |
26 | 28 | <guice.version>7.0.0</guice.version>
|
27 |
| - <junit.platform.version>1.10.2</junit.platform.version> |
28 |
| - <surefire.version>3.2.5</surefire.version> |
| 29 | + <surefire.version>3.5.2</surefire.version> |
29 | 30 | <http.client.version>5.3.1</http.client.version>
|
30 |
| - <awaitility.version>4.2.1</awaitility.version> |
| 31 | + <awaitility.version>4.3.0</awaitility.version> |
31 | 32 | <allure.cucumber.version>2.27.0</allure.cucumber.version>
|
32 | 33 | <tags>@notebook</tags>
|
33 | 34 | <concurrent>true</concurrent>
|
|
37 | 38 | </cucumber.plugin>
|
38 | 39 | </properties>
|
39 | 40 |
|
| 41 | + <dependencyManagement> |
| 42 | + <dependencies> |
| 43 | + <dependency> |
| 44 | + <groupId>org.junit</groupId> |
| 45 | + <artifactId>junit-bom</artifactId> |
| 46 | + <version>${junit.bom.version}</version> |
| 47 | + <type>pom</type> |
| 48 | + <scope>import</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>io.cucumber</groupId> |
| 52 | + <artifactId>cucumber-bom</artifactId> |
| 53 | + <version>${cucumber.bom.version}</version> |
| 54 | + <type>pom</type> |
| 55 | + <scope>import</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.fasterxml.jackson</groupId> |
| 59 | + <artifactId>jackson-bom</artifactId> |
| 60 | + <version>${jackson.bom.version}</version> |
| 61 | + <scope>import</scope> |
| 62 | + <type>pom</type> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + </dependencyManagement> |
| 66 | + |
40 | 67 | <dependencies>
|
41 | 68 | <!--Cucumber dependencies-->
|
42 | 69 | <dependency>
|
43 | 70 | <groupId>io.cucumber</groupId>
|
44 | 71 | <artifactId>cucumber-java</artifactId>
|
45 |
| - <version>${cucumber.version}</version> |
46 | 72 | </dependency>
|
47 | 73 | <dependency>
|
48 | 74 | <groupId>io.cucumber</groupId>
|
49 | 75 | <artifactId>cucumber-guice</artifactId>
|
50 |
| - <version>${cucumber.version}</version> |
51 | 76 | </dependency>
|
52 | 77 | <dependency>
|
53 | 78 | <groupId>io.github.fslev</groupId>
|
|
84 | 109 | <dependency>
|
85 | 110 | <groupId>io.cucumber</groupId>
|
86 | 111 | <artifactId>cucumber-junit-platform-engine</artifactId>
|
87 |
| - <version>${cucumber.version}</version> |
88 | 112 | <scope>test</scope>
|
89 | 113 | </dependency>
|
90 | 114 | <dependency>
|
91 | 115 | <groupId>org.junit.platform</groupId>
|
92 | 116 | <artifactId>junit-platform-suite</artifactId>
|
93 |
| - <version>${junit.platform.version}</version> |
94 | 117 | <scope>test</scope>
|
95 | 118 | </dependency>
|
96 | 119 | </dependencies>
|
|
125 | 148 | <artifactId>allure-cucumber7-jvm</artifactId>
|
126 | 149 | <version>${allure.cucumber.version}</version>
|
127 | 150 | <scope>test</scope>
|
128 |
| - <exclusions> |
129 |
| - <exclusion> |
130 |
| - <groupId>io.cucumber</groupId> |
131 |
| - <artifactId>gherkin</artifactId> |
132 |
| - </exclusion> |
133 |
| - </exclusions> |
134 | 151 | </dependency>
|
135 | 152 | </dependencies>
|
136 | 153 | <build>
|
|
208 | 225 | <plugin>
|
209 | 226 | <groupId>org.apache.maven.plugins</groupId>
|
210 | 227 | <artifactId>maven-compiler-plugin</artifactId>
|
211 |
| - <version>3.13.0</version> |
| 228 | + <version>3.14.0</version> |
212 | 229 | <configuration>
|
213 | 230 | <source>11</source>
|
214 | 231 | <target>11</target>
|
|
0 commit comments