You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2007/12/09 05:16:29 UTC

svn commit: r602629 - /directory/apacheds/branches/bigbang/core-unit/pom.xml

Author: akarasulu
Date: Sat Dec  8 20:16:28 2007
New Revision: 602629

URL: http://svn.apache.org/viewvc?rev=602629&view=rev
Log:
making the core unit integration tests run even if the -Dintegration flag is not used

Modified:
    directory/apacheds/branches/bigbang/core-unit/pom.xml

Modified: directory/apacheds/branches/bigbang/core-unit/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core-unit/pom.xml?rev=602629&r1=602628&r2=602629&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/core-unit/pom.xml (original)
+++ directory/apacheds/branches/bigbang/core-unit/pom.xml Sat Dec  8 20:16:28 2007
@@ -59,151 +59,20 @@
     </dependency>
   </dependencies>
 
-  <profiles>
-    <profile>
-    <id>no-integration-or-perf-tests</id>
-    <activation>
-      <activeByDefault>true</activeByDefault>
-    </activation>
-    <build>
-      <plugins>
-        <plugin>
-          <artifactId>maven-surefire-plugin</artifactId>
-          <configuration>
-            <excludes>
-              <exclude>**/*ITest.java</exclude>
-              <exclude>**/*PTest.java</exclude>
-            </excludes>
-            <argLine>-Xmx1024m</argLine>
-          </configuration>
-        </plugin>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <forkMode>pertest</forkMode>
+          <excludes>
+            <exclude>**/*PTest.java</exclude>
+          </excludes>
+          <argLine>-Xmx1024m</argLine>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
-        <plugin>
-          <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-              <execution>
-                <phase>validate</phase>
-                <configuration>
-                  <tasks>
-                    <echo>
-=================================================================
-                          W A R N I N G
-                          -------------
-                  
-Integration and performance tests have been disabled.  To enable 
-integration tests run maven with the -Dintegration switch.  To 
-enable performance tests run maven with the -Dperformance switch.
-=================================================================
-                    </echo>
-                  </tasks>
-                </configuration>
-                <goals>
-                  <goal>run</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <profile>
-      <id>integration</id>
-      <activation>
-        <property><name>integration</name></property>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <forkMode>pertest</forkMode>
-              <!-- <argLine>-agentlib:yjpagent</argLine> -->
-              <excludes>
-                <exclude>**/*PTest.java</exclude>
-              </excludes>
-              <argLine>-Xmx1024m</argLine>
-            </configuration>
-          </plugin>
-
-          <plugin>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-              <execution>
-                <phase>validate</phase>
-                <configuration>
-                  <tasks>
-                    <echo>
-=================================================================
-                   I N T E G R A T I O N
-                   ---------------------
-                  
-Performance tests have been disabled.  To enable 
-performance tests run maven with the -Dperformance switch.
-=================================================================
-                    </echo>
-                  </tasks>
-                </configuration>
-                <goals>
-                  <goal>run</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-
-    <profile>
-      <id>performance</id>
-      <activation>
-        <property><name>performance</name></property>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <systemProperties>
-                <property>
-                  <name>outputDirectory</name>
-                  <value>${basedir}/target</value>
-                </property>
-              </systemProperties>
-              <excludes>
-                <exclude>**/*ITest.java</exclude>
-              </excludes>
-              <argLine>-Xmx1024m</argLine>
-            </configuration>
-          </plugin>
-
-          <plugin>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-              <execution>
-                <phase>validate</phase>
-                <configuration>
-                  <tasks>
-                    <echo>
-=================================================================
-                   P E R F O R M A N C E
-                   ---------------------
-                  
-Integration tests have been disabled.  To enable integration
-tests run maven with the -Dintegration switch.
-=================================================================
-                    </echo>
-                  </tasks>
-                </configuration>
-                <goals>
-                  <goal>run</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
 </project>