added derby and mysql to the test classpath for all projects.
authorErik Brakkee <erik@brakkee.org>
Thu, 15 May 2008 21:22:26 +0000 (21:22 +0000)
committerErik Brakkee <erik@brakkee.org>
Thu, 15 May 2008 21:22:26 +0000 (21:22 +0000)
pom.xml
security/pom.xml

diff --git a/pom.xml b/pom.xml
index 15b3c8073fd1752442c2d8a9b32b56bc7d0ae10f..52758f75c47ca971b18b2f2c1040e293e2bbeaa2 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>4.4</version>
-            <scope>test</scope> 
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.dbunit</groupId>
             <version>2.3</version>
             <scope>test</scope>
         </dependency>
-
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derby</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derbyclient</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derbynet</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>mysql</groupId>
+            <artifactId>mysql-connector-java</artifactId>
+            <scope>test</scope>
+        </dependency>
         <!-- dependency>
           <groupId>org.testng</groupId>
           <artifactId>testng</artifactId>
     <build>
         <plugins>
             <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>jalopy-maven-plugin</artifactId>
-              <configuration>
-                  <fileFormat>UNIX</fileFormat>
-                  <convention>org.wamblee.jalopy.xml</convention>
-              </configuration>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jalopy-maven-plugin</artifactId>
+                <configuration>
+                    <fileFormat>UNIX</fileFormat>
+                    <convention>org.wamblee.jalopy.xml</convention>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                     </execution>
                 </executions>
             </plugin>
-            
+
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>cobertura-maven-plugin</artifactId>
                 <configuration>
                     <instrumentation>
                         <excludes>
-                          <exclude>org/wamblee/crawler/kiss/**/*.class</exclude>
-                          <exclude>org/wamblee/mythtv/**/*.class</exclude>
+                            <exclude>org/wamblee/crawler/kiss/**/*.class</exclude>
+                            <exclude>org/wamblee/mythtv/**/*.class</exclude>
                         </excludes>
                     </instrumentation>
                 </configuration>
             </plugin>
-            
+
 
         </plugins>
-        
+
     </build>
 
     <reporting>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>cobertura-maven-plugin</artifactId>
                 <configuration>
-                  <formats>
-                    <format>xml</format>
-                    <format>html</format>
-                  </formats>
+                    <formats>
+                        <format>xml</format>
+                        <format>html</format>
+                    </formats>
                 </configuration>
             </plugin>
 
index 4e9e12c7240d446c8ff7c5600ff87f024a5e9080..efde39b7fc97b089ab7cc6d67c5f7717644a0ea1 100644 (file)
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>
     </dependency>
-    <dependency>
-      <groupId>mysql</groupId>
-      <artifactId>mysql-connector-java</artifactId>
-    </dependency>
 
     <dependency>
       <groupId>org.springframework</groupId>