summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Tedor <jason@tedor.me>2017-07-02 16:12:58 -0400
committerJason Tedor <jason@tedor.me>2017-07-02 16:14:05 -0400
commit5f2a0118b82a1ab945be1ac543687926efa08ea2 (patch)
tree0f1d3230538de0160273f6c01f783fc8f38faeb4
parent12056100233fef70b20c498fa8c9d7917dca2ffa (diff)
Fix third party audit for repository-hdfs
This commit fixes the third party audit check for the repository-hdfs plugin; a class was excluded on JDK 9 that does not need to be.
-rw-r--r--plugins/repository-hdfs/build.gradle4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/repository-hdfs/build.gradle b/plugins/repository-hdfs/build.gradle
index 1dc625563e..ed8fe3c518 100644
--- a/plugins/repository-hdfs/build.gradle
+++ b/plugins/repository-hdfs/build.gradle
@@ -493,10 +493,6 @@ thirdPartyAudit.excludes = [
'com.squareup.okhttp.ResponseBody'
]
-if (project.rootProject.ext.javaVersion == JavaVersion.VERSION_1_9) {
- thirdPartyAudit.excludes.add('javax.xml.bind.annotation.adapters.HexBinaryAdapter')
-}
-
// Gradle 2.13 bundles org.slf4j.impl.StaticLoggerBinder in its core.jar which leaks into the forbidden APIs ant task
// Gradle 2.14+ does not bundle this class anymore so we need to properly exclude it here.
if (GradleVersion.current() > GradleVersion.version("2.13")) {