diff options
author | Michael DÜrre <michael.duerre@highstreet-technologies.com> | 2021-02-09 08:35:01 +0100 |
---|---|---|
committer | Michael DÜrre <michael.duerre@highstreet-technologies.com> | 2021-02-09 08:35:14 +0100 |
commit | f2bcac013651a505ae1adff68d4f8173f99e16c5 (patch) | |
tree | a23cfe462ee2c5fb378c4e46e8ebb4ed7d2c208a /odlparent/setup/src | |
parent | c6bdd9a5a0b6d710f130f655df2e6b15c3a58998 (diff) |
disable spotbugs exec
overwrite spotbugs code check execution
Issue-ID: CCSDK-3143
Signed-off-by: Michael DÜrre <michael.duerre@highstreet-technologies.com>
Change-Id: I362d2d16d2d1815693119d6b90a903383bdad067
Diffstat (limited to 'odlparent/setup/src')
-rwxr-xr-x | odlparent/setup/src/main/resources/pom-template.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/odlparent/setup/src/main/resources/pom-template.xml b/odlparent/setup/src/main/resources/pom-template.xml index 76b4a557..82f62fd1 100755 --- a/odlparent/setup/src/main/resources/pom-template.xml +++ b/odlparent/setup/src/main/resources/pom-template.xml @@ -762,6 +762,17 @@ </dependencies> <executions> <execution> + <!-- overwrite odl default to supress spotbugs code check execution --> + <goals> + <goal>check</goal> + </goals> + <phase>process-sources</phase> + <configuration> + <skip>true</skip> + <failOnViolation>false</failOnViolation> + </configuration> + </execution> + <execution> <id>onap-license</id> <goals> <goal>check</goal> |