diff options
author | Jesse McConnell <jmcconnell@apache.org> | 2007-02-26 20:47:55 +0000 |
---|---|---|
committer | Jesse McConnell <jmcconnell@apache.org> | 2007-02-26 20:47:55 +0000 |
commit | 78afb73f95692bf5076999c8b1fc76c0c5a057ca (patch) | |
tree | 12d2e1811f4182ae5126367198680a4d6ad7c222 /archiva-database/pom.xml | |
parent | 7b52510e87eeda654f6696131c419fb9a0286fb7 (diff) | |
download | archiva-78afb73f95692bf5076999c8b1fc76c0c5a057ca.tar.gz archiva-78afb73f95692bf5076999c8b1fc76c0c5a057ca.zip |
working ibatis example with two tables, only one being used in the test case though
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@512002 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-database/pom.xml')
-rwxr-xr-x | archiva-database/pom.xml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/archiva-database/pom.xml b/archiva-database/pom.xml index 57dcf32fc..be6ee86f0 100755 --- a/archiva-database/pom.xml +++ b/archiva-database/pom.xml @@ -48,6 +48,11 @@ </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-ibatis</artifactId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> @@ -62,14 +67,42 @@ <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> - <!-- TEST DEPS --> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1</version> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.7</version> + </dependency> + <!-- TEST DEPS <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.7.3.3</version> <scope>test</scope> + </dependency> --> + <dependency> + <groupId>org.apache.derby</groupId> + <artifactId>derby</artifactId> + <version>10.2.1.6</version> + <!--<scope>test</scope>--> + </dependency> + <dependency> + <groupId>org.apache.derby</groupId> + <artifactId>derbytools</artifactId> + <version>10.2.1.6</version> + <scope>test</scope> </dependency> </dependencies> <build> + <plugins> + <plugin> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-maven-plugin</artifactId> + </plugin> + </plugins> </build> </project> |