Repository: crunch Updated Branches: refs/heads/master 8e2c4fbcb -> 894446d66
CRUNCH-594: Moved the crunch-lambda to a java8 activated profile. Project: http://git-wip-us.apache.org/repos/asf/crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/crunch/commit/894446d6 Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/894446d6 Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/894446d6 Branch: refs/heads/master Commit: 894446d66490cee49318808e3dbade3109af9de9 Parents: 8e2c4fb Author: Micah Whitacre <[email protected]> Authored: Thu Feb 11 21:54:59 2016 -0600 Committer: Micah Whitacre <[email protected]> Committed: Thu Feb 11 21:54:59 2016 -0600 ---------------------------------------------------------------------- crunch-dist/pom.xml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/crunch/blob/894446d6/crunch-dist/pom.xml ---------------------------------------------------------------------- diff --git a/crunch-dist/pom.xml b/crunch-dist/pom.xml index 48d9b05..7815735 100644 --- a/crunch-dist/pom.xml +++ b/crunch-dist/pom.xml @@ -61,10 +61,6 @@ under the License. <groupId>org.apache.crunch</groupId> <artifactId>crunch-contrib</artifactId> </dependency> - <dependency> - <groupId>org.apache.crunch</groupId> - <artifactId>crunch-lambda</artifactId> - </dependency> </dependencies> <build> @@ -109,6 +105,18 @@ under the License. </plugins> </build> </profile> + <profile> + <id>java-8</id> + <activation> + <jdk>[1.8,]</jdk> + </activation> + <dependencies> + <dependency> + <groupId>org.apache.crunch</groupId> + <artifactId>crunch-lambda</artifactId> + </dependency> + </dependencies> + </profile> </profiles> </project>
