forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (49 loc) · 1.78 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
* Modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*/
testingConventions.enabled = false
dependencies {
api project(':libs:opensearch-core')
api "org.apache.arrow:arrow-memory-core:${versions.arrow}"
api "org.apache.arrow:arrow-vector:${versions.arrow}"
api "org.apache.arrow:arrow-format:${versions.arrow}"
}
tasks.named('forbiddenApisMain').configure {
replaceSignatureFiles 'jdk-signatures'
}
tasks.named('thirdPartyAudit').configure {
ignoreMissingClasses(
'org.slf4j.Logger',
'org.slf4j.LoggerFactory',
'com.fasterxml.jackson.databind.JsonNode',
'com.fasterxml.jackson.databind.MapperFeature',
'com.fasterxml.jackson.databind.MappingJsonFactory',
'com.fasterxml.jackson.databind.ObjectMapper',
'com.fasterxml.jackson.databind.ObjectReader',
'com.fasterxml.jackson.databind.ObjectWriter',
'com.fasterxml.jackson.databind.SerializerProvider',
'com.fasterxml.jackson.databind.json.JsonMapper',
'com.fasterxml.jackson.databind.json.JsonMapper$Builder',
'com.fasterxml.jackson.databind.node.ObjectNode',
'com.fasterxml.jackson.databind.ser.std.StdSerializer',
'com.google.flatbuffers.BaseVector',
'com.google.flatbuffers.Constants',
'com.google.flatbuffers.FlatBufferBuilder',
'com.google.flatbuffers.IntVector',
'com.google.flatbuffers.LongVector',
'com.google.flatbuffers.Struct',
'com.google.flatbuffers.Table',
'org.apache.commons.codec.binary.Hex'
)
ignoreViolations(
'org.apache.arrow.memory.util.MemoryUtil',
'org.apache.arrow.memory.util.MemoryUtil$1'
)
}