Updated Branches: refs/heads/ACCUMULO-1783 30fd9aa6c -> 22498f775
ACCUMULO-1783 Add in maven-compiler-plugin configuration to make eclipse stop defaulting to 1.5 Project: http://git-wip-us.apache.org/repos/asf/accumulo-pig/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo-pig/commit/dd212693 Tree: http://git-wip-us.apache.org/repos/asf/accumulo-pig/tree/dd212693 Diff: http://git-wip-us.apache.org/repos/asf/accumulo-pig/diff/dd212693 Branch: refs/heads/ACCUMULO-1783 Commit: dd212693c8ed9f8d17ef6639f0e65d6d96ffb7d0 Parents: 30fd9aa Author: Josh Elser <els...@apache.org> Authored: Sun Nov 3 22:20:20 2013 -0500 Committer: Josh Elser <els...@apache.org> Committed: Sun Nov 3 22:20:20 2013 -0500 ---------------------------------------------------------------------- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo-pig/blob/dd212693/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index b096123..963dab6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,6 +20,19 @@ <artifactId>accumulo-pig</artifactId> <version>1.4.4-SNAPSHOT</version> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>org.apache.pig</groupId>