| /* |
| * 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. |
| */ |
| |
| plugins { |
| id 'org.apache.beam.module' |
| // id "org.jruyi.thrift" version "0.4.1" |
| } |
| applyJavaNature( |
| automaticModuleName: 'org.apache.beam.sdk.io.thrift', |
| generatedClassPatterns: [ |
| /^org\.apache\.beam\.sdk\.io\.thrift\.payloads.*/, |
| /^org\.apache\.beam\.sdk\.io\.thrift\.TestThriftStruct/, |
| /^org\.apache\.beam\.sdk\.io\.thrift\.TestThriftInnerStruct/, |
| /^org\.apache\.beam\.sdk\.io\.thrift\.TestThriftEnum/, |
| /^org\.apache\.beam\.sdk\.io\.thrift\.TestThriftUnion/, |
| ], |
| ) |
| |
| description = "Apache Beam :: SDKs :: Java :: IO :: Thrift" |
| ext.summary = "IO to read and write Thrift encoded data files" |
| |
| dependencies { |
| implementation library.java.vendored_guava_32_1_2_jre |
| implementation library.java.slf4j_api |
| implementation "org.apache.thrift:libthrift:0.14.1" |
| implementation project(path: ":sdks:java:core", configuration: "shadow") |
| testImplementation library.java.junit |
| testRuntimeOnly library.java.slf4j_jdk14 |
| testRuntimeOnly project(path: ":runners:direct-java", configuration: "shadow") |
| } |
| /* |
| Removed due to lack of Thrift on Jenkins workers. |
| compileThrift { |
| createGenFolder false |
| sourceDir "$projectDir/src/test/resources/thrift" |
| generator 'java' |
| } |
| |
| task copyThrift(type: Copy) { |
| dependsOn(compileThrift) |
| from file("$buildDir/generated-sources/thrift/test_thrift/TestThriftStruct.java") |
| into file("$projectDir/src/test/java/org/apache/beam/sdk/io/thrift/TestThriftStruct.java") |
| } |
| |
| compileTestJava { |
| doFirst { copyThrift } |
| } |
| */ |