You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/10/19 01:53:12 UTC

[05/13] git commit: added java source version specification to pom

added java source version specification to pom


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

Branch: refs/heads/1.5
Commit: c1036f02a307839b29d603c63d6fe80e4ffa6502
Parents: da7e1a0
Author: Jason Trost <ja...@gmail.com>
Authored: Tue Mar 6 11:05:28 2012 -0500
Committer: Jason Trost <ja...@gmail.com>
Committed: Tue Mar 6 11:05:28 2012 -0500

----------------------------------------------------------------------
 pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo-pig/blob/c1036f02/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2e59da7..b99d5d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,4 +69,18 @@
 
   </dependencies>
 
+<build>
+ <plugins>
+<plugin>
+   <groupId>org.apache.maven.plugins</groupId>
+   <artifactId>maven-compiler-plugin</artifactId>
+   <configuration>
+      <source>1.6</source>
+      <target>1.6</target>
+   </configuration>
+</plugin>
+ </plugins>
+</build>
+
+
 </project>