Repository: oozie
Updated Branches:
  refs/heads/master c9580d423 -> fb582110f


OOZIE-3107 org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky 
(dbist13 via pbacsko)


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

Branch: refs/heads/master
Commit: fb582110f563f4ac38f23b3188970705a8953ff7
Parents: c9580d4
Author: Peter Bacsko <pbac...@cloudera.com>
Authored: Mon Nov 20 13:04:16 2017 +0100
Committer: Peter Bacsko <pbac...@cloudera.com>
Committed: Mon Nov 20 13:04:16 2017 +0100

----------------------------------------------------------------------
 pom.xml               |  7 ++++++-
 release-log.txt       |  1 +
 sharelib/hive/pom.xml | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 40 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/fb582110/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9f58011..327a88a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1594,7 +1594,7 @@
     <build>
         <pluginManagement>
             <plugins>
-                   <plugin>
+                <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-enforcer-plugin</artifactId>
                     <version>1.0</version>
@@ -1695,6 +1695,11 @@
                     <artifactId>xml-maven-plugin</artifactId>
                     <version>1.0</version>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-clean-plugin</artifactId>
+                    <version>3.0.0</version>
+                </plugin>
             </plugins>
         </pluginManagement>
 

http://git-wip-us.apache.org/repos/asf/oozie/blob/fb582110/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index a7940bc..bb1e5e0 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.0.0 release (trunk - unreleased)
 
+OOZIE-3107 org.apache.oozie.action.hadoop.TestHiveMain#testMain is flaky 
(dbist13 via pbacsko)
 OOZIE-3125 amend TestDBLoadDump.testImportInvalidDataLeavesTablesEmpty fails 
(asasvari)
 OOZIE-3106 amend upgrade surefire-plugin to 2.20.1 (dbist13 via asasvari)
 OOZIE-2869 Ability to add/remove MapReduce jars from action classpath 
(gezapeti)

http://git-wip-us.apache.org/repos/asf/oozie/blob/fb582110/sharelib/hive/pom.xml
----------------------------------------------------------------------
diff --git a/sharelib/hive/pom.xml b/sharelib/hive/pom.xml
index 4786b25..f2611b9 100644
--- a/sharelib/hive/pom.xml
+++ b/sharelib/hive/pom.xml
@@ -268,6 +268,39 @@
                     </excludes>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-clean-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>auto-clean</id>
+                        <phase>clean</phase>
+                        <goals>
+                            <goal>clean</goal>
+                        </goals>
+                        <configuration>
+                            <filesets>
+                                <fileset>
+                                    <directory>${basedir}</directory>
+                                    <includes>
+                                        <include>*.log</include>
+                                        <include>hive-site.xml</include>
+                                        <include>*.properties</include>
+                                        <include>hivetmp</include>
+                                        <include>propagation-conf.xml</include>
+                                    </includes>
+                                    <followSymlinks>false</followSymlinks>
+                                    
<useDefaultExcludes>true</useDefaultExcludes>
+                                    <excludes>
+                                        <exclude>${basedir}/pom.xml</exclude>
+                                        <exclude>${basedir}/src</exclude>
+                                    </excludes>
+                                </fileset>
+                            </filesets>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
 

Reply via email to