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

This commit is contained in:
Sean Busbey 2015-03-11 13:18:30 -05:00
parent e66dca6cd1
commit 9087febd21
2 changed files with 34 additions and 1 deletions

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
MAVEN_OPTS="-Xmx3100M" MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}"
# The number of acceptable warning for *all* modules # The number of acceptable warning for *all* modules
# Please update the per-module test-patch.properties if you update this file. # Please update the per-module test-patch.properties if you update this file.

33
pom.xml
View File

@ -1684,6 +1684,39 @@
--> -->
<profiles> <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> <profile>
<id>os.linux</id> <id>os.linux</id>
<activation> <activation>