Repository: hbase
Updated Branches:
  refs/heads/master e66dca6cd -> 9087febd2


HBASE-13191. Addendum missed one spot we hard-code MAVEN_OPTS for jenkins.


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

Branch: refs/heads/master
Commit: 9087febd21fe2f8970fc79cacbb2730057479cff
Parents: e66dca6
Author: Sean Busbey <bus...@apache.org>
Authored: Wed Mar 11 13:18:30 2015 -0500
Committer: Sean Busbey <bus...@apache.org>
Committed: Wed Mar 11 13:18:43 2015 -0500

----------------------------------------------------------------------
 dev-support/test-patch.properties |  2 +-
 pom.xml                           | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/9087febd/dev-support/test-patch.properties
----------------------------------------------------------------------
diff --git a/dev-support/test-patch.properties 
b/dev-support/test-patch.properties
index 192a3ed..661ee24 100644
--- a/dev-support/test-patch.properties
+++ b/dev-support/test-patch.properties
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-MAVEN_OPTS="-Xmx3100M"
+MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}"
 
 # The number of acceptable warning for *all* modules
 # Please update the per-module test-patch.properties if you update this file.

http://git-wip-us.apache.org/repos/asf/hbase/blob/9087febd/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index ac2b36c..b6e23c0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1684,6 +1684,39 @@
 
   -->
   <profiles>
+    <!-- profile activated by the Jenkins patch testing job -->
+    <profile>
+      <id>jenkins.patch</id>
+      <activation>
+        <activeByDefault>false</activeByDefault>
+        <property>
+            <name>HBasePatchProcess</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <inherited>false</inherited>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <configuration>
+                  <tasks>
+                    <echo>Maven Exceution Environment</echo>
+                    <echo>MAVEN_OPTS="${env.MAVEN_OPTS}"</echo>
+                  </tasks>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
     <profile>
       <id>os.linux</id>
       <activation>

Reply via email to