You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by bi...@apache.org on 2017/01/10 14:01:08 UTC

kylin git commit: add multipe profile to IT

Repository: kylin
Updated Branches:
  refs/heads/calcite-11 2b72f7433 -> 88cba3d15


add multipe profile to IT


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/88cba3d1
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/88cba3d1
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/88cba3d1

Branch: refs/heads/calcite-11
Commit: 88cba3d15dfd036c36937d18371daf55e3410447
Parents: 2b72f74
Author: Billy Liu <bi...@apache.org>
Authored: Tue Jan 10 22:01:00 2017 +0800
Committer: Billy Liu <bi...@apache.org>
Committed: Tue Jan 10 22:01:00 2017 +0800

----------------------------------------------------------------------
 kylin-it/pom.xml | 30 ++++++++++++++++++++++++------
 1 file changed, 24 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/88cba3d1/kylin-it/pom.xml
----------------------------------------------------------------------
diff --git a/kylin-it/pom.xml b/kylin-it/pom.xml
index 94cdb7e..55b9f98 100644
--- a/kylin-it/pom.xml
+++ b/kylin-it/pom.xml
@@ -55,12 +55,16 @@
             <groupId>org.apache.kylin</groupId>
             <artifactId>kylin-source-hive</artifactId>
         </dependency>
-        <!--
         <dependency>
             <groupId>org.apache.kylin</groupId>
             <artifactId>kylin-jdbc</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.google.protobuf</groupId>
+                    <artifactId>protobuf-java</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
-        -->
         <dependency>
             <groupId>org.apache.kylin</groupId>
             <artifactId>kylin-tool</artifactId>
@@ -244,10 +248,14 @@
 
     <profiles>
         <profile>
-            <id>sandbox</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
+            <id>sandbox-query</id>
+            <dependencies>
+                <dependency>
+                    <groupId>com.google.protobuf</groupId>
+                    <artifactId>protobuf-java</artifactId>
+                    <version>${avatica.protobuf.version}</version>
+                </dependency>
+            </dependencies>
             <build>
                 <plugins>
                     <plugin>
@@ -284,6 +292,16 @@
                             <argLine>-Xms1G -Xmx2G -XX:PermSize=128M -XX:MaxPermSize=512M</argLine>
                         </configuration>
                     </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>sandbox</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>