Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BEAM-10961] enable strict dependency checking for sdks/java/io/azure/ #14047

Merged
merged 2 commits into from
Feb 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 9 additions & 2 deletions sdks/java/io/azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ plugins {
}

applyJavaNature(
enableStrictDependencies:true,
automaticModuleName: 'org.apache.beam.sdk.io.azure')

description = "Apache Beam :: SDKs :: Java :: IO :: Azure"
Expand All @@ -29,13 +30,19 @@ ext.summary = "IO library to read and write Azure services from Beam."
repositories { jcenter() }

dependencies {
compile library.java.commons_io
permitUnusedDeclared library.java.commons_io // BEAM-11761
compile library.java.slf4j_api
compile library.java.vendored_guava_26_0_jre
compile project(path: ":sdks:java:core", configuration: "shadow")
compile "com.azure:azure-storage-blob:12.8.0"
compile "com.azure:azure-identity:1.0.8"
compile "com.microsoft.azure:azure-storage:8.6.5"
compile "commons-io:commons-io:2.6"
compile library.java.slf4j_api
compile "com.azure:azure-core:1.6.0"
compile "com.azure:azure-storage-common:12.8.0"
compile library.java.jackson_annotations
compile library.java.jackson_core
compile library.java.jackson_databind
testCompile project(path: ":sdks:java:core", configuration: "shadowTest")
testCompile library.java.mockito_core
testCompile library.java.junit
Expand Down