no longer including kiss crawler and socket proxy in test coverage.
[utils] / pom.xml
diff --git a/pom.xml b/pom.xml
index 3626101e9270eba61779c7fd311db4f1e5c4832b..1f30478c6ab88698c0946bc9498a86234810722e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.jmock</groupId>
-            <artifactId>jmock</artifactId>
-            <version>${jmock.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.jmock</groupId>
-            <artifactId>jmock-junit4</artifactId>
-            <version>${jmock.version}</version>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.jmock</groupId>
-            <artifactId>jmock-legacy</artifactId>
-            <version>${jmock.version}</version>
-            <scope>test</scope>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <version>2.3</version>
         </dependency>
+        <!-- dependency>
+          <groupId>org.testng</groupId>
+          <artifactId>testng</artifactId>
+          <version>5.7</version>
+          <scope>test</scope>
+          <classifier>jdk15</classifier>
+        </dependency -->
     </dependencies>
 
     <dependencyManagement>
                     <includes>
                         <include>**/*Test.java</include>
                     </includes>
+                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
                 </configuration>
             </plugin>
 
                         </goals>
                     </execution>
                 </executions>
+                <configuration>
+                    <instrumentation>
+                        <excludes>
+                          <exclude>org/wamblee/socketproxy/**/*.class</exclude>
+                          <exclude>org/wamblee/crawler/kiss/**/*.class</exclude>
+                        </excludes>
+                    </instrumentation>
+                </configuration>
             </plugin>