Bump guava from 18.0 to 23.0 in /plugins/ingest-attachment (#3357)
* Bump guava from 18.0 to 23.0 in /plugins/ingest-attachment Bumps [guava](https://github.com/google/guava) from 18.0 to 23.0. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/compare/v18.0...v23.0) --- updated-dependencies: - dependency-name: com.google.guava:guava dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Updating SHAs Signed-off-by: dependabot[bot] <support@github.com> * Add more ingorance of using internal java API sun.misc.Unsafe Signed-off-by: Tianli Feng <ftianli@amazon.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com> Co-authored-by: Tianli Feng <ftianli@amazon.com>
This commit is contained in:
parent
16766288f5
commit
811a580853
|
@ -54,7 +54,7 @@ dependencies {
|
|||
api "org.apache.tika:tika-langdetect-optimaize:${versions.tika}"
|
||||
// Optimaize libraries/dependencies
|
||||
runtimeOnly "com.optimaize.languagedetector:language-detector:0.6"
|
||||
runtimeOnly 'com.google.guava:guava:18.0'
|
||||
runtimeOnly 'com.google.guava:guava:23.0'
|
||||
// Other dependencies
|
||||
api 'org.tukaani:xz:1.9'
|
||||
api 'commons-io:commons-io:2.11.0'
|
||||
|
@ -119,11 +119,21 @@ forbiddenPatterns {
|
|||
thirdPartyAudit {
|
||||
ignoreMissingClasses()
|
||||
ignoreViolations(
|
||||
// uses internal java api: sun.misc.Unsafe
|
||||
'com.google.common.cache.Striped64',
|
||||
'com.google.common.cache.Striped64$1',
|
||||
'com.google.common.cache.Striped64$Cell',
|
||||
'com.google.common.hash.LittleEndianByteArray$UnsafeByteArray',
|
||||
'com.google.common.hash.LittleEndianByteArray$UnsafeByteArray$1',
|
||||
'com.google.common.hash.LittleEndianByteArray$UnsafeByteArray$2',
|
||||
'com.google.common.hash.LittleEndianByteArray$UnsafeByteArray$3',
|
||||
'com.google.common.hash.Striped64',
|
||||
'com.google.common.hash.Striped64$1',
|
||||
'com.google.common.hash.Striped64$Cell',
|
||||
'com.google.common.primitives.UnsignedBytes$LexicographicalComparatorHolder$UnsafeComparator',
|
||||
'com.google.common.primitives.UnsignedBytes$LexicographicalComparatorHolder$UnsafeComparator$1'
|
||||
'com.google.common.primitives.UnsignedBytes$LexicographicalComparatorHolder$UnsafeComparator$1',
|
||||
'com.google.common.util.concurrent.AbstractFuture$UnsafeAtomicHelper',
|
||||
'com.google.common.util.concurrent.AbstractFuture$UnsafeAtomicHelper$1'
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
cce0823396aa693798f8882e64213b1772032b09
|
|
@ -0,0 +1 @@
|
|||
c947004bb13d18182be60077ade044099e4f26f1
|
Loading…
Reference in New Issue