Skip to content

Commit

Permalink
Fix typo in unitTest task (#36930)
Browse files Browse the repository at this point in the history
Fix the typo introduced in #36311 causing CI failures with the
FipsJvm.
  • Loading branch information
dliappis authored Dec 21, 2018
1 parent cfea2fd commit 8e97bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugin/security/cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 8e97bf9

Please sign in to comment.