You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2015/06/03 19:35:40 UTC

[26/50] [abbrv] storm git commit: force source/target to use Java 1.6

force source/target to use Java 1.6


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

Branch: refs/heads/master
Commit: c48f63e3f361e9416669d4d791de3b3a67c461d0
Parents: 601cee7
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Tue May 5 15:56:47 2015 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Tue May 5 15:56:47 2015 -0400

----------------------------------------------------------------------
 flux-core/pom.xml |  2 +-
 pom.xml           | 11 ++++++++++-
 2 files changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/c48f63e3/flux-core/pom.xml
----------------------------------------------------------------------
diff --git a/flux-core/pom.xml b/flux-core/pom.xml
index fe2e301..2d03ea4 100644
--- a/flux-core/pom.xml
+++ b/flux-core/pom.xml
@@ -53,7 +53,7 @@
         <dependency>
             <groupId>org.apache.storm</groupId>
             <artifactId>storm-hbase</artifactId>
-            <version>0.11.0-SNAPSHOT</version>
+            <version>${storm.version}</version>
             <scope>test</scope>
         </dependency>
     </dependencies>

http://git-wip-us.apache.org/repos/asf/storm/blob/c48f63e3/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e79e25a..de48f7b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -111,7 +111,16 @@
 
         </resources>
         <plugins>
-
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.3</version>
+                <configuration>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                    <encoding>UTF-8</encoding>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>