Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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