Repository: maven-integration-testing Updated Branches: refs/heads/master f2d3d7a02 -> f804183a0
MaxPermSize removed since Java8, see http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6964458 Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/f804183a Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/f804183a Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/f804183a Branch: refs/heads/master Commit: f804183a01821b0df315f0dbf5df965d36d187ba Parents: f2d3d7a Author: Robert Scholte <[email protected]> Authored: Sat Sep 19 17:46:24 2015 +0200 Committer: Robert Scholte <[email protected]> Committed: Sat Sep 19 17:46:24 2015 +0200 ---------------------------------------------------------------------- core-it-suite/pom.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/f804183a/core-it-suite/pom.xml ---------------------------------------------------------------------- diff --git a/core-it-suite/pom.xml b/core-it-suite/pom.xml index 2a41415..2464f6b 100644 --- a/core-it-suite/pom.xml +++ b/core-it-suite/pom.xml @@ -46,7 +46,7 @@ required artifacts. --> <properties> - <surefireMemory>-Xmx384m -XX:MaxPermSize=192m</surefireMemory> + <surefireMemory>-Xmx384m</surefireMemory> <!-- The original Maven distribution to test. --> <mavenHome>${maven.home}</mavenHome> <!-- The (possibly instrumented copy of the) Maven distribution we actually @@ -292,6 +292,15 @@ </build> </profile> <profile> + <id>jdk-properties</id> + <activation> + <jdk>(,1.8)</jdk> + </activation> + <properties> + <surefireMemory>-Xmx384m -XX:MaxPermSize=192m</surefireMemory> + </properties> + </profile> + <profile> <id>embedded</id> <build> <plugins>
