Author: bgoodin
Date: Tue Feb 13 09:19:55 2007
New Revision: 507108

URL: http://svn.apache.org/viewvc?view=rev&rev=507108
Log:
- Updated the hsqldb jar and a unit test that depended on a specific sql 
exception from hsqldb.
- Updated TestCL to use the threads ClassLoader as it's parent to avoid 
classloading issues when running a prototype build with Maven. Figure it 
wouldn't hurt to commit the change because it sill works in Ant build.

Added:
    ibatis/trunk/java/mapper/mapper2/pom.xml

Added: ibatis/trunk/java/mapper/mapper2/pom.xml
URL: 
http://svn.apache.org/viewvc/ibatis/trunk/java/mapper/mapper2/pom.xml?view=auto&rev=507108
==============================================================================
--- ibatis/trunk/java/mapper/mapper2/pom.xml (added)
+++ ibatis/trunk/java/mapper/mapper2/pom.xml Tue Feb 13 09:19:55 2007
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+                xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>org.apache.ibatis</groupId>
+       <artifactId>ibatis-sqlmap</artifactId>
+       <packaging>jar</packaging>
+       <version>2.2.3</version>
+       <name>iBATIS SQL Map</name>
+       <url>http://ibatis.apache.org</url>
+       <dependencies>
+               <dependency>
+                       <groupId>org.apache.geronimo.specs</groupId>
+                       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
+                       <version>1.0.1</version>
+                       <scope>compile</scope>
+               </dependency>
+               <dependency>
+                       <groupId>opensymphony</groupId>
+                       <artifactId>oscache</artifactId>
+                       <version>2.3</version>
+                       <scope>compile</scope>
+               </dependency>
+               <dependency>
+                       <groupId>cglib</groupId>
+                       <artifactId>cglib-full</artifactId>
+                       <version>2.0.2</version>
+                       <scope>compile</scope>
+               </dependency>
+               <dependency>
+                       <groupId>commons-logging</groupId>
+                       <artifactId>commons-logging-api</artifactId>
+                       <version>1.0.3</version>
+                       <scope>compile</scope>
+               </dependency>
+               <dependency>
+                       <groupId>log4j</groupId>
+                       <artifactId>log4j</artifactId>
+                       <version>1.2.9</version>
+                       <scope>compile</scope>
+               </dependency>
+               <dependency>
+                       <groupId>commons-dbcp</groupId>
+                       <artifactId>commons-dbcp</artifactId>
+                       <version>1.2.1</version>
+                       <scope>compile</scope>
+               </dependency>
+               <!-- TEST DEPENDENCIES -->
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+                       <version>3.8.1</version>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>hsqldb</groupId>
+                       <artifactId>hsqldb</artifactId>
+                       <version>1.8.0.7</version>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.derby</groupId>
+                       <artifactId>derby</artifactId>
+                       <version>10.2.2.0</version>
+                       <scope>test</scope>
+               </dependency>
+       </dependencies>
+       <build>
+               <sourceDirectory>${basedir}/src</sourceDirectory>
+               <testSourceDirectory>${basedir}/test</testSourceDirectory>
+               <resources>
+                       <resource>
+                               <directory>${basedir}/src</directory>
+                               <excludes>
+                                       <exclude>**/*.java</exclude>
+                               </excludes>
+                       </resource>
+               </resources>
+               <testResources>
+                       <testResource>
+                               <directory>${basedir}/test</directory>
+                               <excludes>
+                                       <exclude>**/*.java</exclude>
+                               </excludes>
+                       </testResource>
+               </testResources>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.4</source>
+                                       <target>1.4</target>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                       </plugin>
+               </plugins>
+       </build>
+       <reporting>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               
<artifactId>maven-surefire-report-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>cobertura-maven-plugin</artifactId>
+                               <version>2.0</version>
+                       </plugin>
+               </plugins>
+       </reporting>
+       <!--
+       <distributionManagement>
+               <repository>
+                       <uniqueVersion></uniqueVersion>
+                       <id></id>
+                       <name></name>
+                       <url></url>
+               </repository>
+       </distributionManagement>
+       -->
+</project>


Reply via email to