Commit eef3cc42 authored by Nate Liu's avatar Nate Liu Committed by nateYourNanny

Correct Gradle files pattern matching description and example

`junit` files pattern matching should be globbing instead of regex.
parent 09669e2c
......@@ -113,8 +113,8 @@ There are a few tools that can produce JUnit reports in Java.
In the following example, `gradle` is used to generate the test reports.
If there are multiple test tasks defined, `gradle` will generate multiple
directories under `build/test-results/`. In that case, you can leverage regex
matching by defining the following path: `build/test-results/test/TEST-*.xml`:
directories under `build/test-results/`. In that case, you can leverage glob
matching by defining the following path: `build/test-results/test/**/TEST-*.xml`:
```yaml
java:
......@@ -123,7 +123,7 @@ java:
- gradle test
artifacts:
reports:
junit: build/test-results/test/TEST-*.xml
junit: build/test-results/test/**/TEST-*.xml
```
#### Maven
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment