Repository: camel
Updated Branches:
  refs/heads/master 2a54a0ab6 -> ff94895cc


Including Ekstazi (www.ekstazi.org) profile to optimize execution of the tests


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

Branch: refs/heads/master
Commit: ff94895ccd71b1fd3170d3d4c68bdb27ead55d3d
Parents: 2a54a0a
Author: Milos Gligoric <milos.gligo...@gmail.com>
Authored: Thu Nov 13 09:17:06 2014 -0600
Committer: Akitoshi Yoshida <a...@apache.org>
Committed: Tue Nov 25 12:51:57 2014 +0100

----------------------------------------------------------------------
 .gitignore     |  1 +
 parent/pom.xml | 49 ++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 49 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/ff94895c/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 6c72a7e..43d4e81 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,6 +5,7 @@ target
 .idea
 .DS_Store
 .classpath
+.ekstazi
 .project
 .settings
 .checkstyle

http://git-wip-us.apache.org/repos/asf/camel/blob/ff94895c/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index de2b60a..adb0e83 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -3053,6 +3053,53 @@
       </dependencies>
     </profile>
 
-  </profiles>
+    <!-- experimental profile to activate ekstazi http://www.ekstazi.org -->
+    <profile>
+      <id>ekstazi</id>
+      <activation>
+        <property>
+          <name>ekstazi</name>
+        </property>
+      </activation>
 
+      <dependencies>
+        <dependency>
+          <groupId>org.codehaus.woodstox</groupId>
+          <artifactId>woodstox-core-asl</artifactId>
+          <version>${woodstox-version}</version>
+          <scope>test</scope>
+        </dependency>
+      </dependencies>
+      
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.ekstazi</groupId>
+            <artifactId>ekstazi-maven-plugin</artifactId>
+            <version>4.3.0</version>
+            <configuration>
+              <!-- always run tests that failed in prevoius run -->
+              <forcefailing>true</forcefailing>
+            </configuration>
+            <executions>
+              <execution>
+                <id>doit</id>
+                <goals>
+                  <goal>select</goal>
+                  <goal>restore</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              
<excludesFile>${java.io.tmpdir}/${user.name}EkstaziExcludes</excludesFile>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

Reply via email to