Fix typo in unitTest task (#36930)

Fix the typo introduced in #36311 causing CI failures with the
FipsJvm.
This commit is contained in:
Dimitrios Liappis 2018-12-21 15:18:43 +02:00 committed by GitHub
parent cfea2fd68c
commit 8e97bf9d06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,13 +23,13 @@ dependencyLicenses {
}
if (project.inFipsJvm) {
tesunitTestt.enabled = false
unitTest.enabled = false
// Forbiden APIs non-portable checks fail because bouncy castle classes being used from the FIPS JDK since those are
// not part of the Java specification - all of this is as designed, so we have to relax this check for FIPS.
tasks.withType(CheckForbiddenApis) {
bundledSignatures -= "jdk-non-portable"
}
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
// FIPS JVM includes many 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.
thirdPartyAudit.enabled = false
}