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 87b6bfe [BEAM-10961] enable strict dependency checking for
sdks/java/extensions/euphoria
new 4c8e00d Merge pull request #14083 from
sonam-vend/sdks-extensions-euphoria
87b6bfe is described below
commit 87b6bfe1a0d253b8a218909b6e6039a0a949ce0b
Author: Shehzaad Nakhoda <[email protected]>
AuthorDate: Thu Feb 25 11:44:52 2021 -0800
[BEAM-10961] enable strict dependency checking for
sdks/java/extensions/euphoria
---
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