Skip to content

Commit

Permalink
[BEAM-1240] Create RabbitMqIO
Browse files Browse the repository at this point in the history
  • Loading branch information
jbonofre committed Oct 25, 2018
1 parent 01c1cfe commit 119d0bc
Show file tree
Hide file tree
Showing 7 changed files with 1,287 additions and 0 deletions.
38 changes: 38 additions & 0 deletions sdks/java/io/rabbitmq/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* License); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

apply plugin: org.apache.beam.gradle.BeamModulePlugin
applyJavaNature()

description = "Apache Beam :: SDKs :: Java :: IO :: RabbitMQ"
ext.summary = "IO to read and write to a RabbitMQ broker."

dependencies {
compile library.java.guava
shadow project(path: ":beam-sdks-java-core", configuration: "shadow")
shadow library.java.joda_time
shadow "com.rabbitmq:amqp-client:4.6.0"
testCompile project(path: ":beam-runners-direct-java", configuration: "shadow")
testCompile "org.apache.qpid:qpid-broker:0.28"
testCompile "org.apache.qpid:qpid-broker-core:0.28"
testCompile library.java.junit
testCompile library.java.hamcrest_core
testCompile library.java.hamcrest_library
testCompile library.java.slf4j_api
testCompile library.java.slf4j_jdk14
}
Loading

0 comments on commit 119d0bc

Please sign in to comment.