You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2012/01/14 02:49:32 UTC

git commit: DELTASPIKE-35 run unpacked tests from core as well

Updated Branches:
  refs/heads/master cbd80adb3 -> d88b1a208


DELTASPIKE-35 run unpacked tests from core as well

(in an own surefire execution)


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

Branch: refs/heads/master
Commit: d88b1a208b66011592088bcbea031710d8724527
Parents: cbd80ad
Author: Mark Struberg <st...@apache.org>
Authored: Sat Jan 14 02:48:33 2012 +0100
Committer: Mark Struberg <st...@apache.org>
Committed: Sat Jan 14 02:48:33 2012 +0100

----------------------------------------------------------------------
 deltaspike/core/integration-test/pom.xml |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/d88b1a20/deltaspike/core/integration-test/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/core/integration-test/pom.xml b/deltaspike/core/integration-test/pom.xml
index 1ad9725..6594a49 100644
--- a/deltaspike/core/integration-test/pom.xml
+++ b/deltaspike/core/integration-test/pom.xml
@@ -107,6 +107,20 @@
                                 <printSummary>true</printSummary>
                             </configuration>
                         </execution>
+                        <execution>
+                            <id>run-core-tests</id>
+                            <phase>integration-test</phase>
+                            <goals>
+                                <goal>test</goal>
+                            </goals>
+                            <configuration>
+                                <testClassesDirectory>${project.build.directory}/coretests/</testClassesDirectory>
+                                <skip>false</skip>
+                                <redirectTestOutputToFile>true</redirectTestOutputToFile>
+                                <trimStackTrace>false</trimStackTrace>
+                                <printSummary>true</printSummary>
+                            </configuration>
+                        </execution>
                     </executions>
                 </plugin>
             </plugins>
@@ -124,6 +138,7 @@
                             <goal>unpack</goal>
                         </goals>
                         <configuration>
+                            <includes>**/*Test.class</includes>
                             <artifactItems>
                                 <artifactItem>
                                     <groupId>org.apache.deltaspike.core</groupId>