You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2012/12/21 12:15:39 UTC

git commit: o Activated embedded mode by default for maven3. Make sure you have enough permgen: 420MB or so in Maven opts

Updated Branches:
  refs/heads/master ab4eea7e0 -> 0d6f4f921


o Activated embedded mode by default for maven3. Make sure you have enough permgen: 420MB or so in Maven opts


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/0d6f4f92
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/0d6f4f92
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/0d6f4f92

Branch: refs/heads/master
Commit: 0d6f4f9210cf1619d7c98e6a516a2470dead4aba
Parents: ab4eea7
Author: Kristian Rosenvold <kr...@apache.org>
Authored: Fri Dec 21 12:15:16 2012 +0100
Committer: Kristian Rosenvold <kr...@apache.org>
Committed: Fri Dec 21 12:15:16 2012 +0100

----------------------------------------------------------------------
 surefire-integration-tests/pom.xml |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/0d6f4f92/surefire-integration-tests/pom.xml
----------------------------------------------------------------------
diff --git a/surefire-integration-tests/pom.xml b/surefire-integration-tests/pom.xml
index 4d70ac3..32aeb84 100644
--- a/surefire-integration-tests/pom.xml
+++ b/surefire-integration-tests/pom.xml
@@ -187,13 +187,19 @@
 
     <profile>
       <id>embedded</id>
+      <activation>
+        <file>
+          <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
+          <exists>${basedir}</exists>
+        </file>
+      </activation>
       <properties>
         <verifier.forkMode>auto</verifier.forkMode>
       </properties>
     </profile>
 
     <profile>
-    <id>maven-2.2.1</id>
+      <id>maven-2.2.1</id>
       <properties>
         <mavenHomeUsed>${project.build.directory}/maven-extract/apache-maven-2.2.1</mavenHomeUsed>
       </properties>