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/splunk #14064

Merged
merged 1 commit into from
Feb 24, 2021
Merged
Changes from all commits
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
12 changes: 9 additions & 3 deletions sdks/java/io/splunk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,24 @@
plugins {
id 'org.apache.beam.module'
}
applyJavaNature(automaticModuleName: 'org.apache.beam.sdk.io.splunk')
applyJavaNature(enableStrictDependencies: true, automaticModuleName: 'org.apache.beam.sdk.io.splunk')

description = "Apache Beam :: SDKs :: Java :: IO :: Splunk"
ext.summary = "IO to write events to Splunk Http Event Collector (HEC)"

dependencies {
compile platform(library.java.google_cloud_platform_libraries_bom)
compile library.java.slf4j_api
Copy link
Contributor Author

Choose a reason for hiding this comment

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

moved below - for alphabeticization

compile project(path: ":sdks:java:core", configuration: "shadow")
compile library.java.google_api_client
permitUnusedDeclared library.java.google_api_client // BEAM-11761
compile library.java.google_http_client_apache_v2
compile library.java.google_code_gson
compile project(path: ":sdks:java:core", configuration: "shadow")
Copy link
Contributor Author

Choose a reason for hiding this comment

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

moved above to group compile library.java. together.

compile library.java.google_http_client
compile library.java.http_client
compile library.java.http_core
compile library.java.joda_time
compile library.java.slf4j_api
compile library.java.vendored_guava_26_0_jre
testCompile library.java.junit
testCompile group: 'org.mock-server', name: 'mockserver-junit-rule', version: '5.10.0'
testCompile group: 'org.mock-server', name: 'mockserver-client-java', version: '5.10.0'
Expand Down