You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by td...@apache.org on 2012/10/17 20:03:30 UTC

[1/3] git commit: Set language level to allow maven 2 builds.

Updated Branches:
  refs/heads/master a88e2620d -> cae05f8b3


Set language level to allow maven 2 builds.


Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/cae05f8b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/cae05f8b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/cae05f8b

Branch: refs/heads/master
Commit: cae05f8b35cfa5ac533f4f5d5b381d98afb7a8b2
Parents: 4faaf19
Author: tdunning <td...@apache.org>
Authored: Wed Oct 17 11:02:51 2012 -0700
Committer: tdunning <td...@apache.org>
Committed: Wed Oct 17 11:02:51 2012 -0700

----------------------------------------------------------------------
 sandbox/plan-parser/pom.xml |   94 +++++++++++++++++++++-----------------
 1 files changed, 52 insertions(+), 42 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/cae05f8b/sandbox/plan-parser/pom.xml
----------------------------------------------------------------------
diff --git a/sandbox/plan-parser/pom.xml b/sandbox/plan-parser/pom.xml
index 28990c6..75eadb7 100644
--- a/sandbox/plan-parser/pom.xml
+++ b/sandbox/plan-parser/pom.xml
@@ -7,51 +7,61 @@
     <groupId>plan-parser</groupId>
     <artifactId>plan-parser</artifactId>
     <version>0.1-SNAPSHOT</version>
-  <dependencies>
-    <dependency>
-      <groupId>com.google.guava</groupId>
-      <artifactId>guava</artifactId>
-      <version>10.0.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.antlr</groupId>
-      <artifactId>antlr</artifactId>
-      <version>3.4</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.8.2</version>
-    </dependency>
-      <dependency>
-          <groupId>com.google.code.gson</groupId>
-          <artifactId>gson</artifactId>
-          <version>1.7.2</version>
-      </dependency>
+    <dependencies>
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <version>10.0.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.antlr</groupId>
+            <artifactId>antlr</artifactId>
+            <version>3.4</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.8.2</version>
+        </dependency>
+        <dependency>
+            <groupId>com.google.code.gson</groupId>
+            <artifactId>gson</artifactId>
+            <version>1.7.2</version>
+        </dependency>
 
-  </dependencies>
+    </dependencies>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.antlr</groupId>
-        <artifactId>antlr3-maven-plugin</artifactId>
-        <version>3.4</version>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.antlr</groupId>
+                <artifactId>antlr3-maven-plugin</artifactId>
+                <version>3.4</version>
 
-        <executions>
-          <execution>
-            <id>antlr-generate</id>
-            <!-- this is used for inheritance merges -->
-            <phase>generate-sources</phase>
-            <!-- bind to the packaging phase -->
-            <goals>
-              <goal>antlr</goal>
-            </goals>
-          </execution>
-        </executions>
+                <executions>
+                    <execution>
+                        <id>antlr-generate</id>
+                        <!-- this is used for inheritance merges -->
+                        <phase>generate-sources</phase>
+                        <!-- bind to the packaging phase -->
+                        <goals>
+                            <goal>antlr</goal>
+                        </goals>
+                    </execution>
+                </executions>
 
-      </plugin>
-    </plugins>
-  </build>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.5.1</version>
+                <configuration>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 
 </project>
\ No newline at end of file