|
23 | 23 | <maven.compiler.source>21</maven.compiler.source> |
24 | 24 | <maven.compiler.target>21</maven.compiler.target> |
25 | 25 | <maven.compile.version>3.5.1</maven.compile.version> |
26 | | - <maven-surefire-plugin.version>3.1.0</maven-surefire-plugin.version> |
| 26 | + <maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version> |
27 | 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
28 | 28 | <jakarta.json.bind.version>3.0.0</jakarta.json.bind.version> |
29 | 29 | <jakarta.json.version>2.1.1</jakarta.json.version> |
30 | 30 | <tinkerpop.version>3.6.1</tinkerpop.version> |
31 | 31 | <weld.se.core.version>6.0.3.Final</weld.se.core.version> |
32 | 32 | <mockito.verson>5.18.0</mockito.verson> |
33 | 33 | <assertj.version>3.24.2</assertj.version> |
34 | | - <junit.version>5.9.2</junit.version> |
| 34 | + <junit.version>5.14.0</junit.version> |
| 35 | + <cocumber.version>7.30.0</cocumber.version> |
35 | 36 | </properties> |
36 | 37 |
|
37 | 38 | <dependencies> |
|
87 | 88 | <version>${junit.version}</version> |
88 | 89 | <scope>test</scope> |
89 | 90 | </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.junit.platform</groupId> |
| 93 | + <artifactId>junit-platform-suite-api</artifactId> |
| 94 | + <version>1.14.0</version> |
| 95 | + <scope>test</scope> |
| 96 | + </dependency> |
90 | 97 | <dependency> |
91 | 98 | <groupId>org.mockito</groupId> |
92 | 99 | <artifactId>mockito-core</artifactId> |
|
117 | 124 | <version>3.27.3</version> |
118 | 125 | <scope>test</scope> |
119 | 126 | </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>io.cucumber</groupId> |
| 129 | + <artifactId>cucumber-java</artifactId> |
| 130 | + <version>${cocumber.version}</version> |
| 131 | + <scope>test</scope> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>io.cucumber</groupId> |
| 135 | + <artifactId>cucumber-junit-platform-engine</artifactId> |
| 136 | + <version>${cocumber.version}</version> |
| 137 | + <scope>test</scope> |
| 138 | + </dependency> |
| 139 | + |
| 140 | + <dependency> |
| 141 | + <groupId>net.java.dev.jna</groupId> |
| 142 | + <artifactId>jna</artifactId> |
| 143 | + <version>5.18.1</version> |
| 144 | + <scope>test</scope> |
| 145 | + </dependency> |
| 146 | + <dependency> |
| 147 | + <groupId>net.java.dev.jna</groupId> |
| 148 | + <artifactId>jna-platform</artifactId> |
| 149 | + <version>5.18.1</version> |
| 150 | + <scope>test</scope> |
| 151 | + </dependency> |
| 152 | + |
| 153 | + |
120 | 154 | </dependencies> |
121 | 155 | <build> |
122 | 156 | <pluginManagement> |
|
130 | 164 | <source>${maven.compiler.source}</source> |
131 | 165 | </configuration> |
132 | 166 | </plugin> |
133 | | - <plugin> |
134 | | - <groupId>org.apache.maven.plugins</groupId> |
135 | | - <artifactId>maven-surefire-plugin</artifactId> |
136 | | - <version>${maven-surefire-plugin.version}</version> |
137 | | - </plugin> |
138 | 167 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
139 | 168 | <plugin> |
140 | 169 | <groupId>org.eclipse.m2e</groupId> |
|
168 | 197 | </plugin> |
169 | 198 | </plugins> |
170 | 199 | </pluginManagement> |
| 200 | + <plugins> |
| 201 | + <plugin> |
| 202 | + <groupId>org.apache.maven.plugins</groupId> |
| 203 | + <artifactId>maven-surefire-plugin</artifactId> |
| 204 | + <version>${maven-surefire-plugin.version}</version> |
| 205 | + <configuration> |
| 206 | + <useModulePath>false</useModulePath> |
| 207 | + </configuration> |
| 208 | + </plugin> |
| 209 | + </plugins> |
171 | 210 | </build> |
172 | 211 |
|
173 | 212 | <repositories> |
|
0 commit comments