Repository: falcon Updated Branches: refs/heads/master 629bcfbdb -> 85ed40eba
FALCON-1981 Remove runtime jar dependencies from pom files + Remove jar dependency from pom files that are not required during runtime, but provided by Hadoop + End to End test to make sure few flows work Author: Venkatesan Ramachandran <[email protected]> Reviewers: "Ying Zheng <[email protected]>, Venkat Ranganathan <[email protected]>" Closes #161 from vramachan/FALCON-1982.PomCleanUp Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/85ed40eb Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/85ed40eb Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/85ed40eb Branch: refs/heads/master Commit: 85ed40eba15039c9ed15ab9785f74a991bd50f41 Parents: 629bcfb Author: Venkatesan Ramachandran <[email protected]> Authored: Thu Jun 2 17:07:51 2016 -0700 Committer: bvellanki <[email protected]> Committed: Thu Jun 2 17:07:51 2016 -0700 ---------------------------------------------------------------------- addons/hdfs-snapshot-mirroring/pom.xml | 9 --------- addons/hivedr/pom.xml | 9 --------- cli/pom.xml | 1 - client/pom.xml | 1 + webapp/pom.xml | 1 + 5 files changed, 2 insertions(+), 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/85ed40eb/addons/hdfs-snapshot-mirroring/pom.xml ---------------------------------------------------------------------- diff --git a/addons/hdfs-snapshot-mirroring/pom.xml b/addons/hdfs-snapshot-mirroring/pom.xml index d37185f..5689f44 100644 --- a/addons/hdfs-snapshot-mirroring/pom.xml +++ b/addons/hdfs-snapshot-mirroring/pom.xml @@ -85,56 +85,47 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> - <scope>compile</scope> <version>${hadoop.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-common</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-server-resourcemanager</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-server-nodemanager</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-auth</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-distcp</artifactId> - <scope>compile</scope> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/falcon/blob/85ed40eb/addons/hivedr/pom.xml ---------------------------------------------------------------------- diff --git a/addons/hivedr/pom.xml b/addons/hivedr/pom.xml index f380012..0d1c3f3 100644 --- a/addons/hivedr/pom.xml +++ b/addons/hivedr/pom.xml @@ -37,56 +37,47 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> - <scope>compile</scope> <version>${hadoop.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-common</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-server-resourcemanager</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-server-nodemanager</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-auth</artifactId> - <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-distcp</artifactId> - <scope>compile</scope> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/falcon/blob/85ed40eb/cli/pom.xml ---------------------------------------------------------------------- diff --git a/cli/pom.xml b/cli/pom.xml index e77cb46..91d0897 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -39,7 +39,6 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-auth</artifactId> - <scope>compile</scope> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/falcon/blob/85ed40eb/client/pom.xml ---------------------------------------------------------------------- diff --git a/client/pom.xml b/client/pom.xml index 8bc77fa..3aa1091 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -117,6 +117,7 @@ <goal>copy-dependencies</goal> </goals> <configuration> + <excludeScope>provided</excludeScope> <outputDirectory>${project.build.directory}/dependency</outputDirectory> </configuration> </execution> http://git-wip-us.apache.org/repos/asf/falcon/blob/85ed40eb/webapp/pom.xml ---------------------------------------------------------------------- diff --git a/webapp/pom.xml b/webapp/pom.xml index f98c5e3..996b5f7 100644 --- a/webapp/pom.xml +++ b/webapp/pom.xml @@ -387,6 +387,7 @@ </goals> <configuration> <outputDirectory>${project.build.directory}/dependency</outputDirectory> + <excludeScope>provided</excludeScope> </configuration> </execution> <execution>
