You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2016/11/15 22:25:44 UTC

hive git commit: HIVE-14990 : run all tests for MM tables and fix the issues that are found - undo spark POM change breaking spark tests (Sergey Shelukhin)

Repository: hive
Updated Branches:
  refs/heads/hive-14535 b3914c37a -> a5ba17d5e


HIVE-14990 : run all tests for MM tables and fix the issues that are found - undo spark POM change breaking spark tests (Sergey Shelukhin)


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

Branch: refs/heads/hive-14535
Commit: a5ba17d5e588bb4a06257b0f757841c5f1178345
Parents: b3914c3
Author: Sergey Shelukhin <se...@apache.org>
Authored: Tue Nov 15 14:25:14 2016 -0800
Committer: Sergey Shelukhin <se...@apache.org>
Committed: Tue Nov 15 14:25:14 2016 -0800

----------------------------------------------------------------------
 itests/qtest-spark/pom.xml | 54 +++++++++++++++--------------------------
 1 file changed, 20 insertions(+), 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/a5ba17d5/itests/qtest-spark/pom.xml
----------------------------------------------------------------------
diff --git a/itests/qtest-spark/pom.xml b/itests/qtest-spark/pom.xml
index 698d467..240852e 100644
--- a/itests/qtest-spark/pom.xml
+++ b/itests/qtest-spark/pom.xml
@@ -350,38 +350,6 @@
         </executions>
       </plugin>
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>build-helper-maven-plugin</artifactId>
-        <version>${maven.build-helper.plugin.version}</version>
-        <executions>
-          <execution>
-            <id>add-test-sources</id>
-            <phase>generate-test-sources</phase>
-            <goals>
-              <goal>add-test-source</goal>
-            </goals>
-            <configuration>
-              <sources>
-                <source>target/generated-test-sources/java</source>
-              </sources>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
-<profiles>
-  <profile>
-    <id>spark-test</id>
-    <activation>
-      <property>
-        <name>!skipSparkTests</name>
-      </property>
-    </activation>
-  <build>
-    <plugins>
-      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
@@ -422,8 +390,26 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>${maven.build-helper.plugin.version}</version>
+        <executions>
+          <execution>
+            <id>add-test-sources</id>
+            <phase>generate-test-sources</phase>
+            <goals>
+              <goal>add-test-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+                <source>target/generated-test-sources/java</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
-</profile>
-</profiles>
+
 </project>