FALCON-1412 Process waits indefinitely and finally timedout even though missing dependencies are met. Contributed by Pallavi Rao.
Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/44ca0bdb Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/44ca0bdb Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/44ca0bdb Branch: refs/heads/0.7 Commit: 44ca0bdbc25325bf6652a9ba79ce23dd5c7a73fb Parents: 21fc645 Author: Ajay Yadava <[email protected]> Authored: Thu Aug 20 15:24:17 2015 +0530 Committer: Ajay Yadava <[email protected]> Committed: Thu Aug 20 19:49:01 2015 +0530 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ oozie-el-extensions/pom.xml | 22 +++++++++++++++++++++- src/main/assemblies/distributed-package.xml | 5 +++++ src/main/assemblies/standalone-package.xml | 5 +++++ 4 files changed, 33 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/44ca0bdb/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 2a1d0a6..f31f839 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -89,6 +89,8 @@ Trunk (Unreleased) (Suhas Vasu) BUG FIXES + FALCON-1412 Process waits indefinitely and finally timedout even though missing dependencies are met(Pallavi Rao via Ajay Yadava) + FALCON-1409 Update API throws NullPointerException(Sandeep Samudrala via Ajay Yadava) FALCON-1407 Temporarily disable failing tests in ClusterEntityValidationIT(Ajay Yadava) http://git-wip-us.apache.org/repos/asf/falcon/blob/44ca0bdb/oozie-el-extensions/pom.xml ---------------------------------------------------------------------- diff --git a/oozie-el-extensions/pom.xml b/oozie-el-extensions/pom.xml index b914426..517ddd1 100644 --- a/oozie-el-extensions/pom.xml +++ b/oozie-el-extensions/pom.xml @@ -83,5 +83,25 @@ <artifactId>commons-lang3</artifactId> </dependency> </dependencies> - + <build> + <plugins> + <plugin> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>copy-dependencies</goal> + </goals> + <configuration> + <includeArtifactIds> + commons-lang3 + </includeArtifactIds> + <outputDirectory>${project.build.directory}/dependency</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/falcon/blob/44ca0bdb/src/main/assemblies/distributed-package.xml ---------------------------------------------------------------------- diff --git a/src/main/assemblies/distributed-package.xml b/src/main/assemblies/distributed-package.xml index 0b56572..794eaef 100644 --- a/src/main/assemblies/distributed-package.xml +++ b/src/main/assemblies/distributed-package.xml @@ -41,6 +41,11 @@ </fileSet> <fileSet> + <directory>oozie-el-extensions/target/dependency</directory> + <outputDirectory>oozie/libext</outputDirectory> + </fileSet> + + <fileSet> <directory>docs/target/site</directory> <outputDirectory>docs</outputDirectory> </fileSet> http://git-wip-us.apache.org/repos/asf/falcon/blob/44ca0bdb/src/main/assemblies/standalone-package.xml ---------------------------------------------------------------------- diff --git a/src/main/assemblies/standalone-package.xml b/src/main/assemblies/standalone-package.xml index 40e6b99..fcff8d7 100644 --- a/src/main/assemblies/standalone-package.xml +++ b/src/main/assemblies/standalone-package.xml @@ -40,6 +40,11 @@ </fileSet> <fileSet> + <directory>oozie-el-extensions/target/dependency</directory> + <outputDirectory>oozie/libext</outputDirectory> + </fileSet> + + <fileSet> <directory>docs/target/site</directory> <outputDirectory>docs</outputDirectory> </fileSet>
