mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
This change changes the way to run our test suites in JVMs configured in FIPS 140 approved mode. It does so by: - Configuring any given runtime Java in FIPS mode with the bundled policy and security properties files, setting the system properties java.security.properties and java.security.policy with the == operator that overrides the default JVM properties and policy. - When runtime java is 11 and higher, using BouncyCastle FIPS Cryptographic provider and BCJSSE in FIPS mode. These are used as testRuntime dependencies for unit tests and internal clusters, and copied (relevant jars) explicitly to the lib directory for testclusters used in REST tests - When runtime java is 8, using BouncyCastle FIPS Cryptographic provider and SunJSSE in FIPS mode. Running the tests in FIPS 140 approved mode doesn't require an additional configuration either in CI workers or locally and is controlled by specifying -Dtests.fips.enabled=true
96 lines
3.2 KiB
Groovy
96 lines
3.2 KiB
Groovy
import org.elasticsearch.gradle.info.BuildParams
|
|
|
|
/*
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
esplugin {
|
|
description 'Ingest processor that uses Apache Tika to extract contents'
|
|
classname 'org.elasticsearch.ingest.attachment.IngestAttachmentPlugin'
|
|
}
|
|
|
|
versions << [
|
|
'tika': '1.22',
|
|
'pdfbox': '2.0.16',
|
|
'poi': '4.0.1',
|
|
'mime4j': '0.8.3'
|
|
]
|
|
|
|
dependencies {
|
|
// mandatory for tika
|
|
compile "org.apache.tika:tika-core:${versions.tika}"
|
|
// build against Jackson 2.9.5, but still works on our current version
|
|
compile "org.apache.tika:tika-parsers:${versions.tika}"
|
|
compile 'org.tukaani:xz:1.8'
|
|
compile 'commons-io:commons-io:2.6'
|
|
compile "org.slf4j:slf4j-api:${versions.slf4j}"
|
|
|
|
// character set detection
|
|
compile 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'
|
|
|
|
// external parser libraries
|
|
// HTML
|
|
compile 'org.ccil.cowan.tagsoup:tagsoup:1.2.1'
|
|
// Adobe PDF
|
|
compile "org.apache.pdfbox:pdfbox:${versions.pdfbox}"
|
|
compile "org.apache.pdfbox:fontbox:${versions.pdfbox}"
|
|
compile "org.apache.pdfbox:jempbox:1.8.16"
|
|
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
|
compile "org.bouncycastle:bcmail-jdk15on:${versions.bouncycastle}"
|
|
compile "org.bouncycastle:bcprov-jdk15on:${versions.bouncycastle}"
|
|
compile "org.bouncycastle:bcpkix-jdk15on:${versions.bouncycastle}"
|
|
// OpenOffice
|
|
compile "org.apache.poi:poi-ooxml:${versions.poi}"
|
|
compile "org.apache.poi:poi:${versions.poi}"
|
|
compile "org.apache.poi:poi-ooxml-schemas:${versions.poi}"
|
|
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
|
compile 'org.apache.xmlbeans:xmlbeans:3.0.1'
|
|
compile 'org.apache.commons:commons-collections4:4.1'
|
|
// MS Office
|
|
compile "org.apache.poi:poi-scratchpad:${versions.poi}"
|
|
// Apple iWork
|
|
compile 'org.apache.commons:commons-compress:1.18'
|
|
// Outlook documents
|
|
compile "org.apache.james:apache-mime4j-core:${versions.mime4j}"
|
|
compile "org.apache.james:apache-mime4j-dom:${versions.mime4j}"
|
|
// EPUB books
|
|
compile 'org.apache.commons:commons-lang3:3.9'
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /apache-mime4j-.*/, to: 'apache-mime4j'
|
|
}
|
|
|
|
forbiddenPatterns {
|
|
exclude '**/*.doc'
|
|
exclude '**/*.docx'
|
|
exclude '**/*.pdf'
|
|
exclude '**/*.epub'
|
|
exclude '**/*.vsdx'
|
|
}
|
|
|
|
thirdPartyAudit {
|
|
ignoreMissingClasses()
|
|
}
|
|
|
|
thirdPartyAudit.onlyIf {
|
|
// 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.
|
|
BuildParams.inFipsJvm == false
|
|
}
|