|
From: <fg...@us...> - 2008-01-08 09:25:09
|
Revision: 517
http://openutils.svn.sourceforge.net/openutils/?rev=517&view=rev
Author: fgiust
Date: 2008-01-08 01:25:06 -0800 (Tue, 08 Jan 2008)
Log Message:
-----------
new openutils-testing module
Modified Paths:
--------------
trunk/pom.xml
Added Paths:
-----------
trunk/openutils-testing/
trunk/openutils-testing/pom.xml
trunk/openutils-testing/src/
Property changes on: trunk/openutils-testing
___________________________________________________________________
Name: svn:ignore
+ .project
.classpath
.checkstyle
target
.settings
Added: trunk/openutils-testing/pom.xml
===================================================================
--- trunk/openutils-testing/pom.xml (rev 0)
+++ trunk/openutils-testing/pom.xml 2008-01-08 09:25:06 UTC (rev 517)
@@ -0,0 +1,54 @@
+<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>
+ <parent>
+ <groupId>net.sourceforge.openutils</groupId>
+ <artifactId>openutils</artifactId>
+ <version>5</version>
+ <relativePath>..</relativePath>
+ </parent>
+ <artifactId>openutils-testing</artifactId>
+ <name>openutils test utils</name>
+ <version>2.0-SNAPSHOT</version>
+ <description>openutils test utils</description>
+ <dependencies>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>1.4.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jcl104-over-slf4j</artifactId>
+ <version>1.4.1</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.dbunit</groupId>
+ <artifactId>dbunit</artifactId>
+ <version>2.2</version>
+ <optional>true</optional>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>junit-addons</groupId>
+ <artifactId>junit-addons</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <properties>
+ <spring.version>2.5</spring.version>
+ </properties>
+</project>
Property changes on: trunk/openutils-testing/pom.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Date Id Revision
Name: svn:eol-style
+ native
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2008-01-04 21:39:07 UTC (rev 516)
+++ trunk/pom.xml 2008-01-08 09:25:06 UTC (rev 517)
@@ -201,6 +201,7 @@
<module>openutils-spring</module>
<module>openutils-usermanagement-dataobjects</module>
<module>openutils-usermanagement</module>
+ <module>openutils-testing</module>
<module>openutils-testing-testng</module>
<module>openutils-testing-testng-dwr</module>
<module>openutils-testing-junit</module>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|