Skip to content

Commit

Permalink
Merge pull request #14047 from sonam-vend/sdks-io-azure
Browse files Browse the repository at this point in the history
[BEAM-10961] enable strict dependency checking for sdks/java/io/azure/
  • Loading branch information
ibzib committed Feb 24, 2021
2 parents c137e88 + 10f74b7 commit f9b3acf
Showing 1 changed file with 9 additions and 2 deletions.
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

0 comments on commit f9b3acf

Please sign in to comment.