You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,14 +60,25 @@ Yoti also allows you to enable user details verification from your mobile app by
60
60
61
61
## Building From Source
62
62
63
-
Building from source is generally not necessary since artifacts are published in Maven Central. However, if you want to build from source you can do so using the [Maven Wrapper](https://github.com/takari/maven-wrapper) that is bundled with this distribution. For those familiar with Gradle this is much like the Gradle Wrapper and ensures that the correct version of Maven is being used.
63
+
Building from source is generally not necessary for third parties since artifacts are published in Maven Central. However, if you want to build from source you can do so using the [Maven Wrapper](https://github.com/takari/maven-wrapper) that is bundled with this distribution. For those familiar with Gradle this is much like the Gradle Wrapper and ensures that the correct version of Maven is being used.
64
64
65
65
From the top level directory:
66
66
67
67
```bash
68
68
./mvnw clean install
69
69
```
70
70
71
+
Notable flags that you may wish to use to skip certain static analysis/code quality tools are listed below. This is only recommended if you find that there tools are taking too long during development or are raising false positives that you are yet to exclude. **They should not be ignored when building a candidate for a release.**
72
+
73
+
*`-Dfindbugs.skip=true`: skips findbugs and the findbugs security extension.
74
+
*`-Ddependency-check.skip=true`: skips the OWASP dependency scanner.
0 commit comments