You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ib...@apache.org on 2021/03/03 18:35:32 UTC

[beam] branch master updated: [BEAM-10961] Enable strict depdency checking for sdks/java/extensions/euphoria (second attempt)

This is an automated email from the ASF dual-hosted git repository.

ibzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 0fe4cce  [BEAM-10961] Enable strict depdency checking for sdks/java/extensions/euphoria (second attempt)
     new 644cf47  Merge pull request #14126 from sonam-vend/sdks-extensions-euphoria-again
0fe4cce is described below

commit 0fe4cce8b002ad7365cd4430b0ec7dfcb1bd1b5b
Author: Shehzaad Nakhoda <sh...@venturedive.com>
AuthorDate: Mon Mar 1 21:22:19 2021 -0800

    [BEAM-10961] Enable strict depdency checking for sdks/java/extensions/euphoria (second attempt)
---
 sdks/java/extensions/euphoria/build.gradle | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sdks/java/extensions/euphoria/build.gradle b/sdks/java/extensions/euphoria/build.gradle
index 92cbb67..1fe6c77 100644
--- a/sdks/java/extensions/euphoria/build.gradle
+++ b/sdks/java/extensions/euphoria/build.gradle
@@ -18,6 +18,7 @@
 
 plugins { id 'org.apache.beam.module' }
 applyJavaNature(
+  enableStrictDependencies: true,
   exportJavadoc: false,
   automaticModuleName: 'org.apache.beam.sdk.extensions.euphoria',
 )
@@ -26,7 +27,10 @@ description = "Apache Beam :: SDKs :: Java :: Extensions :: Euphoria Java 8 DSL"
 
 dependencies {
   compile project(path: ":sdks:java:core", configuration: "shadow")
-  testCompile library.java.mockito_core
+  compile library.java.jackson_annotations
+  compile library.java.joda_time
+  compile library.java.slf4j_api
+  compile library.java.vendored_guava_26_0_jre
   testCompile project(":sdks:java:extensions:kryo")
   testCompile library.java.slf4j_api
   testCompile library.java.hamcrest_core