You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gobblin.apache.org by hu...@apache.org on 2020/06/04 18:49:23 UTC

[incubator-gobblin] branch master updated: [GOBBLIN-1181] Make parquet-proto compileOnly dependency

This is an automated email from the ASF dual-hosted git repository.

hutran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-gobblin.git


The following commit(s) were added to refs/heads/master by this push:
     new 3b82da5  [GOBBLIN-1181] Make parquet-proto compileOnly dependency
3b82da5 is described below

commit 3b82da5d774c93d8c605afd8914eee84fb5a59e5
Author: vbohra <vb...@linkedin.com>
AuthorDate: Thu Jun 4 11:49:15 2020 -0700

    [GOBBLIN-1181] Make parquet-proto compileOnly dependency
    
    Closes #3028 from vikrambohra/skipParquetProto
---
 gobblin-modules/gobblin-parquet-apache/build.gradle | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gobblin-modules/gobblin-parquet-apache/build.gradle b/gobblin-modules/gobblin-parquet-apache/build.gradle
index 5cf4618..82f9027 100644
--- a/gobblin-modules/gobblin-parquet-apache/build.gradle
+++ b/gobblin-modules/gobblin-parquet-apache/build.gradle
@@ -24,7 +24,8 @@ dependencies {
   compile externalDependency.gson
   compile externalDependency.parquet
   compile externalDependency.parquetAvro
-  compile externalDependency.parquetProto
+  compileOnly externalDependency.parquetProto
+  testCompile externalDependency.parquetProto
 
   testCompile externalDependency.testng
   testCompile externalDependency.mockito