From: <fg...@us...> - 2007-02-05 17:19:17
|
Revision: 197 http://svn.sourceforge.net/openutils/?rev=197&view=rev Author: fgiust Date: 2007-02-05 09:18:55 -0800 (Mon, 05 Feb 2007) Log Message: ----------- testing module splitted Modified Paths: -------------- trunk/openutils-testing-junit/pom.xml trunk/pom.xml Added Paths: ----------- trunk/openutils-testing-junit/ trunk/openutils-testing-testng/ trunk/openutils-testing-testng/pom.xml trunk/openutils-testing-testng/src/ trunk/openutils-testing-testng/src/main/ trunk/openutils-testing-testng/src/main/java/ Removed Paths: ------------- trunk/openutils-testing/ Property Changed: ---------------- trunk/openutils-configuration/ Property changes on: trunk/openutils-configuration ___________________________________________________________________ Name: svn:ignore - .settings target .checkstyle .classpath .project + .settings target .checkstyle .classpath .project derby.log Copied: trunk/openutils-testing-junit (from rev 195, trunk/openutils-testing) Modified: trunk/openutils-testing-junit/pom.xml =================================================================== --- trunk/openutils-testing/pom.xml 2007-02-05 08:27:20 UTC (rev 195) +++ trunk/openutils-testing-junit/pom.xml 2007-02-05 17:18:55 UTC (rev 197) @@ -8,8 +8,8 @@ <version>3</version> <relativePath>..</relativePath> </parent> - <artifactId>openutils-testing</artifactId> - <name>openutils test utils</name> + <artifactId>openutils-testing-junit</artifactId> + <name>openutils test utils (junit)</name> <version>1.1-SNAPSHOT</version> <description>openutils test utils</description> <dependencies> @@ -46,23 +46,15 @@ <version>2.2</version> </dependency> <dependency> - <groupId>dbunit</groupId> + <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> - <version>2.1</version> + <version>2.2</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> - <optional>true</optional> </dependency> - <dependency> - <groupId>org.testng</groupId> - <artifactId>testng</artifactId> - <classifier>jdk15</classifier> - <version>5.1</version> - <optional>true</optional> - </dependency> </dependencies> </project> \ No newline at end of file Added: trunk/openutils-testing-testng/pom.xml =================================================================== --- trunk/openutils-testing-testng/pom.xml (rev 0) +++ trunk/openutils-testing-testng/pom.xml 2007-02-05 17:18:55 UTC (rev 197) @@ -0,0 +1,61 @@ +<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>3</version> + <relativePath>..</relativePath> + </parent> + <artifactId>openutils-testing-testng</artifactId> + <name>openutils test utils (testng)</name> + <version>1.1-SNAPSHOT</version> + <description>openutils test utils</description> + <dependencies> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>1.0.1</version> + </dependency> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.13</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>2.0.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>2.0.1</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-hibernate3</artifactId> + <version>2.0.1</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <version>2.2</version> + </dependency> + <dependency> + <groupId>org.dbunit</groupId> + <artifactId>dbunit</artifactId> + <version>2.2</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <classifier>jdk15</classifier> + <version>5.1</version> + </dependency> + </dependencies> +</project> \ No newline at end of file Property changes on: trunk/openutils-testing-testng/pom.xml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + native Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2007-02-05 15:10:48 UTC (rev 196) +++ trunk/pom.xml 2007-02-05 17:18:55 UTC (rev 197) @@ -150,7 +150,8 @@ <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-junit</module> <module>openutils-web</module> <module>openutils-tags-spring</module> <module>openutils-dbmigration</module> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |