Skip to content

Commit

Permalink
[BEAM-10961] Enabled strict dependencies on java-job-service (#13662)
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle Weaver <kcweaver@google.com>
  • Loading branch information
sonam-vend and ibzib committed Jan 20, 2021
1 parent 0bfdf6c commit d1c8c24
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions runners/java-job-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

plugins { id 'org.apache.beam.module' }
applyJavaNature(
enableStrictDependencies: true,
automaticModuleName: 'org.apache.beam.runners.jobservice',
)

Expand All @@ -26,17 +27,20 @@ dependencies {
compile library.java.vendored_guava_26_0_jre
compile project(":runners:core-construction-java")
compile project(path: ":model:pipeline", configuration: "shadow")
compile project(path: ":model:fn-execution", configuration: "shadow")
compile project(path: ":sdks:java:core", configuration: "shadow")
compile project(path: ":model:job-management", configuration: "shadow")
compile project(":sdks:java:expansion-service")
compile project(":sdks:java:fn-execution")
compile project(":runners:core-construction-java")
compile project(":runners:java-fn-execution")
compile library.java.jackson_core
compile library.java.jackson_databind
compile library.java.joda_time
compile library.java.commons_compress
compile library.java.vendored_grpc_1_26_0
compile library.java.slf4j_api
compile library.java.args4j
testCompile library.java.junit
testCompile library.java.hamcrest_core
testCompile library.java.hamcrest_library
testCompile library.java.mockito_core
testRuntimeOnly library.java.slf4j_simple
}

0 comments on commit d1c8c24

Please sign in to comment.