|
253 | 253 | <artifactId>exec-maven-plugin</artifactId> |
254 | 254 | <version>3.5.0</version> |
255 | 255 | <executions> |
256 | | - <execution> |
| 256 | + <!--<execution> |
257 | 257 | <id>update-test-harness-submodule</id> |
258 | 258 | <phase>validate</phase> |
259 | 259 | <goals> |
260 | 260 | <goal>exec</goal> |
261 | 261 | </goals> |
262 | 262 | <configuration> |
263 | | - <!-- run: git submodule update \-\-init test-harness --> |
| 263 | + <!– run: git submodule update \-\-init test-harness –> |
264 | 264 | <executable>git</executable> |
265 | 265 | <arguments> |
266 | 266 | <argument>submodule</argument> |
267 | 267 | <argument>update</argument> |
268 | | - <argument>--init</argument> |
| 268 | + <argument>--init</argument> |
269 | 269 | <argument>test-harness</argument> |
270 | 270 | </arguments> |
271 | 271 | </configuration> |
272 | | - </execution> |
| 272 | + </execution>--> |
273 | 273 | <execution> |
274 | 274 | <id>update-spec-submodule</id> |
275 | 275 | <phase>validate</phase> |
|
287 | 287 | </arguments> |
288 | 288 | </configuration> |
289 | 289 | </execution> |
290 | | - <execution> |
291 | | - <id>copy-gherkin-evaluation.feature</id> |
292 | | - <phase>validate</phase> |
293 | | - <goals> |
294 | | - <goal>exec</goal> |
295 | | - </goals> |
296 | | - <configuration> |
297 | | - <!-- copy the feature spec we want to test into resources so them can be easily loaded --> |
298 | | - <!-- run: cp test-harness/features/evaluation.feature src/test/resources/features/ --> |
299 | | - <executable>cp</executable> |
300 | | - <arguments> |
301 | | - <argument>spec/specification/assets/gherkin/evaluation.feature</argument> |
302 | | - <argument>src/test/resources/features/</argument> |
303 | | - </arguments> |
304 | | - </configuration> |
305 | | - </execution> |
306 | | - <execution> |
307 | | - <id>copy-gherkin-flagd-json-evaluator.feature</id> |
308 | | - <phase>validate</phase> |
309 | | - <goals> |
310 | | - <goal>exec</goal> |
311 | | - </goals> |
312 | | - <configuration> |
313 | | - <!-- copy the feature spec we want to test into resources so them can be easily loaded --> |
314 | | - <!-- run: cp test-harness/features/flagd-json-evaluator.feature src/test/resources/features/ --> |
315 | | - <executable>cp</executable> |
316 | | - <arguments> |
317 | | - <argument>test-harness/gherkin/flagd-json-evaluator.feature</argument> |
318 | | - <argument>src/test/resources/features/</argument> |
319 | | - </arguments> |
320 | | - </configuration> |
321 | | - </execution> |
322 | | - <execution> |
323 | | - <id>copy-gherkin-flagd.feature</id> |
324 | | - <phase>validate</phase> |
325 | | - <goals> |
326 | | - <goal>exec</goal> |
327 | | - </goals> |
328 | | - <configuration> |
329 | | - <!-- copy the feature spec we want to test into resources so them can be easily loaded --> |
330 | | - <!-- run: cp test-harness/features/flagd.feature src/test/resources/features/ --> |
331 | | - <executable>cp</executable> |
332 | | - <arguments> |
333 | | - <argument>test-harness/gherkin/flagd.feature</argument> |
334 | | - <argument>src/test/resources/features/</argument> |
335 | | - </arguments> |
336 | | - </configuration> |
337 | | - </execution> |
338 | | - <execution> |
339 | | - <id>copy-gherkin-flagd-rpc-caching.feature</id> |
340 | | - <phase>validate</phase> |
341 | | - <goals> |
342 | | - <goal>exec</goal> |
343 | | - </goals> |
344 | | - <configuration> |
345 | | - <executable>cp</executable> |
346 | | - <arguments> |
347 | | - <argument>test-harness/gherkin/flagd-rpc-caching.feature</argument> |
348 | | - <argument>src/test/resources/features/</argument> |
349 | | - </arguments> |
350 | | - </configuration> |
351 | | - </execution> |
352 | | - <execution> |
353 | | - <id>copy-gherkin-config.feature</id> |
354 | | - <phase>validate</phase> |
355 | | - <goals> |
356 | | - <goal>exec</goal> |
357 | | - </goals> |
358 | | - <configuration> |
359 | | - <!-- copy the feature spec we want to test into resources so them can be easily loaded --> |
360 | | - <!-- run: cp test-harness/features/flagd.feature src/test/resources/features/ --> |
361 | | - <executable>cp</executable> |
362 | | - <arguments> |
363 | | - <argument>test-harness/gherkin/config.feature</argument> |
364 | | - <argument>src/test/resources/features/</argument> |
365 | | - </arguments> |
366 | | - </configuration> |
367 | | - </execution> |
368 | | - <execution> |
369 | | - <id>copy-gherkin-flagd-reconnect.feature</id> |
370 | | - <phase>validate</phase> |
371 | | - <goals> |
372 | | - <goal>exec</goal> |
373 | | - </goals> |
374 | | - <configuration> |
375 | | - <!-- copy the feature spec we want to test into resources so them can be easily loaded --> |
376 | | - <!-- run: cp test-harness/features/flagd-reconnect.feature src/test/resources/features/ --> |
377 | | - <executable>cp</executable> |
378 | | - <arguments> |
379 | | - <argument>test-harness/gherkin/flagd-reconnect.feature</argument> |
380 | | - <argument>src/test/resources/features/</argument> |
381 | | - </arguments> |
382 | | - </configuration> |
383 | | - </execution> |
384 | 290 | </executions> |
385 | 291 | </plugin> |
386 | 292 | </plugins> |
|
0 commit comments