Repository: camel
Updated Branches:
  refs/heads/master 29a746103 -> 614a4f43d


Update QuickFIX J to version 1.6.0, fix PermGen issue in Java <= 1.7


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

Branch: refs/heads/master
Commit: 614a4f43d61fdbb4a074d7748c4cd95de3c8a25c
Parents: c182b47
Author: lburgazzoli <[email protected]>
Authored: Wed Jul 1 15:49:46 2015 +0200
Committer: Claus Ibsen <[email protected]>
Committed: Wed Jul 1 20:40:30 2015 +0200

----------------------------------------------------------------------
 components/camel-quickfix/pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/614a4f43/components/camel-quickfix/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-quickfix/pom.xml 
b/components/camel-quickfix/pom.xml
index ba41eae..4b60e5c 100644
--- a/components/camel-quickfix/pom.xml
+++ b/components/camel-quickfix/pom.xml
@@ -82,4 +82,26 @@
     </dependency>
   </dependencies>
 
+  <profiles>
+    <profile>
+      <id>permgen</id>
+      <activation>
+        <jdk>(,1.7]</jdk>
+      </activation>
+      <build>
+        <plugins>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-surefire-plugin</artifactId>
+              <configuration>
+                <forkCount>1</forkCount>
+                <reuseForks>false</reuseForks>
+                <argLine>-XX:MaxPermSize=160m</argLine>
+              </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
 </project>

Reply via email to