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/influxdb #14054

Merged
merged 2 commits into from
Feb 24, 2021
Merged
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion sdks/java/io/influxdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

plugins { id 'org.apache.beam.module' }
applyJavaNature(automaticModuleName: 'org.apache.beam.sdk.io.influxdb')
applyJavaNature(enableStrictDependencies:true,automaticModuleName: 'org.apache.beam.sdk.io.influxdb')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: spacing

Suggested change
applyJavaNature(enableStrictDependencies:true,automaticModuleName: 'org.apache.beam.sdk.io.influxdb')
applyJavaNature(enableStrictDependencies: true, automaticModuleName: 'org.apache.beam.sdk.io.influxdb')

provideIntegrationTestingDependencies()
enableJavaPerformanceTesting()

Expand All @@ -27,6 +27,9 @@ ext.summary = "IO to read and write on InfluxDB"
dependencies {
compile project(path: ":sdks:java:core", configuration: "shadow")
compile library.java.influxdb_library
compile "com.squareup.okhttp3:okhttp:4.6.0"
compile library.java.vendored_guava_26_0_jre
compile library.java.slf4j_api
testCompile library.java.junit
testCompile library.java.powermock
testCompile library.java.powermock_mockito
Expand Down