Skip to content

Commit 791306b

Browse files
committed
[GOBBLIN-271] Move the grok converter to the gobblin-grok module
1 parent 8284bb7 commit 791306b

File tree

11 files changed

+32
-1
lines changed

11 files changed

+32
-1
lines changed

gobblin-core/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ dependencies {
5656
compile externalDependency.findBugsAnnotations
5757
compile externalDependency.oltu
5858
compile externalDependency.opencsv
59-
compile externalDependency.grok
6059
compile externalDependency.hadoopHdfs
6160

6261
runtime externalDependency.protobuf
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
apply plugin: 'java'
19+
20+
dependencies {
21+
compile project(":gobblin-api")
22+
compile project(":gobblin-core-base")
23+
compile project(":gobblin-data-management")
24+
25+
compile externalDependency.grok
26+
compile externalDependency.slf4j
27+
28+
testCompile externalDependency.testng
29+
}
30+
31+
ext.classification="library"
32+

0 commit comments

Comments
 (0)