Exclude test helper files from Surefire

git-svn-id: https://svn.apache.org/repos/asf/jakarta/bsf/trunk@758488 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bsf3/bsf-api/pom.xml b/bsf3/bsf-api/pom.xml
index c3c17f3..fcbc934 100644
--- a/bsf3/bsf-api/pom.xml
+++ b/bsf3/bsf-api/pom.xml
@@ -40,5 +40,19 @@
        </dependency>
 
     </dependencies>
-
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                      <!-- Exclude unit test support classes -->
+                      <exclude>org/apache/bsf/utils/*.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>