Added surefire HTML report generation
diff --git a/dbws/dbws.simple/README.md b/dbws/dbws.simple/README.md
index 45af487..8a7ea90 100644
--- a/dbws/dbws.simple/README.md
+++ b/dbws/dbws.simple/README.md
@@ -29,6 +29,7 @@
         - WebSphere
             - org.eclipse.persistence.platform.server.was.WebSphere_7_Platform
             - org.eclipse.persistence.transaction.was.WebSphereTransactionController
-4. Run the Packaging: mvn package
-5. Deploy WAR file to compatible target server
-6. Run the Integration Tests: mvn integration-test
+4.  Run the Packaging: mvn package
+5.  Deploy WAR file to compatible target server
+6.  Run the Integration Tests: mvn integration-test
+7.  Generate the test report HTML:  mvn site
diff --git a/dbws/dbws.simple/pom.xml b/dbws/dbws.simple/pom.xml
index ac3cd7d..ecfc1b9 100644
--- a/dbws/dbws.simple/pom.xml
+++ b/dbws/dbws.simple/pom.xml
@@ -299,4 +299,27 @@
 		</resources>
 
 	</build>
+    
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jxr-plugin</artifactId>
+                <version>${jxr-maven-plugin.version}</version>
+                <configuration>
+                    <aggregate>true</aggregate>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <version>${maven-surefire-report-plugin.version}</version>
+                <configuration>
+                    <forkMode>once</forkMode>
+                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
 </project>