Disable thirdPartyAudit tests when running in a FIPS JVM (#49115)
This fixes a regression introduced in #42042. The logic here was mistakenly inverted such that we only run these tests in a FIPS JVM which is the opposite of what we intend.
This commit is contained in:
parent
6f14a63059
commit
a370008856
|
@ -45,7 +45,7 @@ test {
|
||||||
thirdPartyAudit.onlyIf {
|
thirdPartyAudit.onlyIf {
|
||||||
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
|
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
|
||||||
// rather than provide a long list of exclusions, disable the check on FIPS.
|
// rather than provide a long list of exclusions, disable the check on FIPS.
|
||||||
BuildParams.inFipsJvm
|
BuildParams.inFipsJvm == false
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue