You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
(7) |
Aug
(37) |
Sep
|
Oct
|
Nov
(1) |
Dec
(22) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(8) |
Feb
(68) |
Mar
(72) |
Apr
(149) |
May
(32) |
Jun
(46) |
Jul
(26) |
Aug
(59) |
Sep
(25) |
Oct
(18) |
Nov
(4) |
Dec
(3) |
2004 |
Jan
(90) |
Feb
(19) |
Mar
(38) |
Apr
(41) |
May
(44) |
Jun
(2) |
Jul
(10) |
Aug
|
Sep
(14) |
Oct
|
Nov
(1) |
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(15) |
Jun
(1) |
Jul
|
Aug
(9) |
Sep
|
Oct
(17) |
Nov
|
Dec
|
2006 |
Jan
(1) |
Feb
(16) |
Mar
|
Apr
(1) |
May
(48) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(29) |
2007 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
(23) |
Mar
(31) |
Apr
|
May
(26) |
Jun
(6) |
Jul
(1) |
Aug
|
Sep
(7) |
Oct
(1) |
Nov
(8) |
Dec
(8) |
2009 |
Jan
(5) |
Feb
(9) |
Mar
(1) |
Apr
|
May
(23) |
Jun
(3) |
Jul
|
Aug
(1) |
Sep
(9) |
Oct
(28) |
Nov
(18) |
Dec
(8) |
2010 |
Jan
(19) |
Feb
(24) |
Mar
(3) |
Apr
|
May
(5) |
Jun
(4) |
Jul
|
Aug
(1) |
Sep
(11) |
Oct
|
Nov
(2) |
Dec
(1) |
2011 |
Jan
|
Feb
(7) |
Mar
|
Apr
(6) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(32) |
Oct
(6) |
Nov
|
Dec
|
From: <jb...@us...> - 2009-10-10 00:51:43
|
Revision: 1057 http://dbunit.svn.sourceforge.net/dbunit/?rev=1057&view=rev Author: jbhurst Date: 2009-10-10 00:51:27 +0000 (Sat, 10 Oct 2009) Log Message: ----------- [2875235] - Corrected SCOLLABLE_RESULTSET to SCROLLABLE_RESULTSET. I trust that this public identifier is not used outside of DbUnit itself. Modified Paths: -------------- trunk/profile.properties trunk/src/test/org/dbunit/TestFeature.java trunk/src/test/org/dbunit/database/ScrollableResultSetTableTest.java Modified: trunk/profile.properties =================================================================== --- trunk/profile.properties 2009-10-10 00:27:15 UTC (rev 1056) +++ trunk/profile.properties 2009-10-10 00:51:27 UTC (rev 1057) @@ -14,14 +14,14 @@ # dbunit.profile.{profileName}.schema = # dbunit.profile.{profileName}.user = # dbunit.profile.{profileName}.password = -# dbunit.profile.{profileName}.unsupportedFeatures = BLOB,CLOB,TRANSACTION,SCOLLABLE_RESULTSET,INSERT_INDENTITY,TRUNCATE_TABLE +# dbunit.profile.{profileName}.unsupportedFeatures = BLOB,CLOB,TRANSACTION,SCROLLABLE_RESULTSET,INSERT_INDENTITY,TRUNCATE_TABLE dbunit.profile.hypersonic.driverClass = org.hsqldb.jdbcDriver dbunit.profile.hypersonic.connectionUrl = jdbc:hsqldb:mem:. dbunit.profile.hypersonic.schema = PUBLIC dbunit.profile.hypersonic.user = sa dbunit.profile.hypersonic.password = -dbunit.profile.hypersonic.unsupportedFeatures = BLOB,CLOB,SCOLLABLE_RESULTSET,INSERT_IDENTITY,TRUNCATE_TABLE +dbunit.profile.hypersonic.unsupportedFeatures = BLOB,CLOB,SCROLLABLE_RESULTSET,INSERT_IDENTITY,TRUNCATE_TABLE dbunit.profile.oracle.driverClass = oracle.jdbc.driver.OracleDriver dbunit.profile.oracle.connectionUrl = jdbc:oracle:thin:@demowin:1521:demowin @@ -43,7 +43,7 @@ dbunit.profile.mssql.schema = dbo dbunit.profile.mssql.user = dbunit dbunit.profile.mssql.password = dbunit -dbunit.profile.mssql.unsupportedFeatures = BLOB,CLOB,SCOLLABLE_RESULTSET +dbunit.profile.mssql.unsupportedFeatures = BLOB,CLOB,SCROLLABLE_RESULTSET dbunit.profile.db2.driverClass = dbunit.profile.db2.connectionUrl = @@ -58,7 +58,7 @@ dbunit.profile.derbyembedded.schema = APP dbunit.profile.derbyembedded.user = APP dbunit.profile.derbyembedded.password = APP -dbunit.profile.derbyembedded.unsupportedFeatures = VARBINARY,BLOB,CLOB,TRANSACTION,SCOLLABLE_RESULTSET,INSERT_IDENTITY,TRUNCATE_TABLE +dbunit.profile.derbyembedded.unsupportedFeatures = VARBINARY,BLOB,CLOB,TRANSACTION,SCROLLABLE_RESULTSET,INSERT_IDENTITY,TRUNCATE_TABLE ## Needed for ant testing until profile.properties is merged Modified: trunk/src/test/org/dbunit/TestFeature.java =================================================================== --- trunk/src/test/org/dbunit/TestFeature.java 2009-10-10 00:27:15 UTC (rev 1056) +++ trunk/src/test/org/dbunit/TestFeature.java 2009-10-10 00:51:27 UTC (rev 1057) @@ -31,7 +31,7 @@ public static final TestFeature CLOB = new TestFeature("CLOB"); public static final TestFeature VARBINARY = new TestFeature("VARBINARY"); public static final TestFeature TRANSACTION = new TestFeature("TRANSACTION"); - public static final TestFeature SCOLLABLE_RESULTSET = new TestFeature("SCOLLABLE_RESULTSET"); + public static final TestFeature SCROLLABLE_RESULTSET = new TestFeature("SCROLLABLE_RESULTSET"); public static final TestFeature INSERT_IDENTITY = new TestFeature("INSERT_IDENTITY"); public static final TestFeature TRUNCATE_TABLE = new TestFeature("TRUNCATE_TABLE");; Modified: trunk/src/test/org/dbunit/database/ScrollableResultSetTableTest.java =================================================================== --- trunk/src/test/org/dbunit/database/ScrollableResultSetTableTest.java 2009-10-10 00:27:15 UTC (rev 1056) +++ trunk/src/test/org/dbunit/database/ScrollableResultSetTableTest.java 2009-10-10 00:51:27 UTC (rev 1057) @@ -41,7 +41,7 @@ } protected boolean runTest(String testName) { - return AbstractDatabaseTest.environmentHasFeature(TestFeature.SCOLLABLE_RESULTSET); + return AbstractDatabaseTest.environmentHasFeature(TestFeature.SCROLLABLE_RESULTSET); } protected ITable createTable() throws Exception This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jb...@us...> - 2009-10-10 00:27:21
|
Revision: 1056 http://dbunit.svn.sourceforge.net/dbunit/?rev=1056&view=rev Author: jbhurst Date: 2009-10-10 00:27:15 +0000 (Sat, 10 Oct 2009) Log Message: ----------- [2875235] - Corrected some Oracle properties for integration tests. Modified Paths: -------------- trunk/profile.properties Modified: trunk/profile.properties =================================================================== --- trunk/profile.properties 2009-10-10 00:01:02 UTC (rev 1055) +++ trunk/profile.properties 2009-10-10 00:27:15 UTC (rev 1056) @@ -28,7 +28,7 @@ dbunit.profile.oracle.schema = DBUNIT dbunit.profile.oracle.user = dbunit dbunit.profile.oracle.password = dbunit -dbunit.profile.oracle.unsupportedFeatures = INSERT_INDENTITY +dbunit.profile.oracle.unsupportedFeatures = INSERT_IDENTITY dbunit.profile.mysql.driverClass = com.mysql.jdbc.Driver dbunit.profile.mysql.connectionUrl = jdbc:mysql://localhost:3306/dbunit @@ -45,12 +45,12 @@ dbunit.profile.mssql.password = dbunit dbunit.profile.mssql.unsupportedFeatures = BLOB,CLOB,SCOLLABLE_RESULTSET -dbunit.profile.db2.driverClass = -dbunit.profile.db2.connectionUrl = -dbunit.profile.db2.schema = -dbunit.profile.db2.user = -dbunit.profile.db2.password = -dbunit.profile.db2.unsupportedFeatures = +dbunit.profile.db2.driverClass = +dbunit.profile.db2.connectionUrl = +dbunit.profile.db2.schema = +dbunit.profile.db2.user = +dbunit.profile.db2.password = +dbunit.profile.db2.unsupportedFeatures = dbunit.profile.derbyembedded.driverClass = org.apache.derby.jdbc.EmbeddedDriver #dbunit.profile.derbyembedded.connectionUrl = jdbc\:derby\:D\:\\TMP\\derby\\derby_db;create\=true @@ -68,6 +68,12 @@ dbunit.profile.user = ${dbunit.profile.hypersonic.user} dbunit.profile.password = ${dbunit.profile.hypersonic.password} +#dbunit.profile.driverClass = ${dbunit.profile.oracle.driverClass} +#dbunit.profile.connectionUrl = ${dbunit.profile.oracle.connectionUrl} +#dbunit.profile.schema = ${dbunit.profile.oracle.schema} +#dbunit.profile.user = ${dbunit.profile.oracle.user} +#dbunit.profile.password = ${dbunit.profile.oracle.password} + #dbunit.profile.driverClass = ${dbunit.profile.mysql.driverClass} #dbunit.profile.connectionUrl = ${dbunit.profile.mysql.connectionUrl} ##dbunit.profile.schema = ${dbunit.profile.mysql.schema} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jb...@us...> - 2009-10-10 00:01:17
|
Revision: 1055 http://dbunit.svn.sourceforge.net/dbunit/?rev=1055&view=rev Author: jbhurst Date: 2009-10-10 00:01:02 +0000 (Sat, 10 Oct 2009) Log Message: ----------- Removed IDEA project and workspace files. Removed Paths: ------------- trunk/dbunit.ipr trunk/dbunit.iws Property Changed: ---------------- trunk/ Property changes on: trunk ___________________________________________________________________ Modified: svn:ignore - *.log .classpath target *.ser junit*.properties .project spy.* tmp idea .settings release.properties tempdb.lck bin full.xml + *.log .classpath target *.ser junit*.properties .project spy.* tmp idea .settings release.properties tempdb.lck bin full.xml *.ipr *.iml *.iws Deleted: trunk/dbunit.ipr =================================================================== --- trunk/dbunit.ipr 2009-10-09 22:50:13 UTC (rev 1054) +++ trunk/dbunit.ipr 2009-10-10 00:01:02 UTC (rev 1055) @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="3" relativePaths="false"> - <component name="ProjectRootManager" version="2"> - <jdk name="java version "1.3.1_08"" /> - <projectPath> - <root type="composite"> - <root type="simple" url="file://$PROJECT_DIR$" /> - </root> - </projectPath> - <sourcePath> - <root type="composite"> - <root type="simple" url="file://$PROJECT_DIR$/src/java" /> - <root type="simple" url="file://$PROJECT_DIR$/src/test" /> - <root type="jdk" rootType="sourcePath" name="java version "1.3.1_08"" /> - </root> - </sourcePath> - <classPath> - <root type="composite"> - <root type="jdk" rootType="classPath" name="java version "1.3.1_08"" /> - <root type="output" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\ant\jars\ant-1.5.3-1.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\crimson\jars\crimson-1.1.3.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\junit\jars\junit-3.8.1.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\jdbc\jars\jdbc-2.0.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\hsqldb\jars\hsqldb-1.7.1.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\poi\jars\poi-1.8.0-dev-20020919.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\mockobjects\jars\mockobjects-core-0.07.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\mockobjects\jars\mockobjects-jdk1.3-0.07.jar!/" /> - <root type="simple" url="jar://C:\Documents and Settings\Utente/.maven/repository\mockmaker\jars\mmmockobjects-1.12.0.jar!/" /> - <root type="simple" url="jar://$PROJECT_DIR$/lib/db2java.jar!/" /> - <root type="simple" url="jar://$PROJECT_DIR$/lib/db2jcc.jar!/" /> - </root> - </classPath> - <excludePath> - <root type="composite"> - <root type="excludedOutput" /> - </root> - </excludePath> - <javadocPath> - <root type="composite"> - <root type="jdk" rootType="javadocPath" name="java version "1.3.1_08"" /> - </root> - </javadocPath> - <assert_keyword enabled="no" /> - <exclude_output enabled="yes" /> - </component> - <component name="CompilerConfiguration"> - <option name="DEFAULT_COMPILER" value="Javac" /> - <option name="SYNCHRONIZE_OUTPUT_DIRECTORY" value="false" /> - <option name="DEFAULT_OUTPUT_PATH" value="$PROJECT_DIR$/tmp" /> - <option name="OUTPUT_MODE" value="single" /> - <resourceExtensions> - <entry name=".+\.(properties|xml|html)" /> - <entry name=".+\.(gif|png|jpeg)" /> - </resourceExtensions> - </component> - <component name="JavacSettings"> - <option name="DEBUGGING_INFO" value="true" /> - <option name="GENERATE_NO_WARNINGS" value="false" /> - <option name="DEPRECATION" value="true" /> - <option name="ADDITIONAL_OPTIONS_STRING" value="" /> - <option name="MAXIMUM_HEAP_SIZE" value="128" /> - </component> - <component name="JikesSettings"> - <option name="JIKES_PATH" value="" /> - <option name="DEBUGGING_INFO" value="true" /> - <option name="DEPRECATION" value="true" /> - <option name="GENERATE_NO_WARNINGS" value="false" /> - <option name="GENERATE_MAKE_FILE_DEPENDENCIES" value="false" /> - <option name="DO_FULL_DEPENDENCE_CHECK" value="false" /> - <option name="IS_EMACS_ERRORS_MODE" value="true" /> - <option name="ADDITIONAL_OPTIONS_STRING" value="" /> - </component> - <component name="AntConfiguration"> - <option name="IS_AUTOSCROLL_TO_SOURCE" value="false" /> - <option name="FILTER_TARGETS" value="false" /> - </component> - <component name="JavadocGenerationManager"> - <option name="OUTPUT_DIRECTORY" /> - <option name="OPTION_SCOPE" value="protected" /> - <option name="OPTION_HIERARCHY" value="false" /> - <option name="OPTION_NAVIGATOR" value="false" /> - <option name="OPTION_INDEX" value="false" /> - <option name="OPTION_SEPARATE_INDEX" value="false" /> - <option name="OPTION_DOCUMENT_TAG_USE" value="false" /> - <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" /> - <option name="OPTION_DOCUMENT_TAG_VERSION" value="false" /> - <option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="false" /> - <option name="OPTION_DEPRECATED_LIST" value="false" /> - <option name="OTHER_OPTIONS" /> - <option name="HEAP_SIZE" /> - <option name="OPEN_IN_BROWSER" value="false" /> - </component> - <component name="WebManager"> - <option enabled="false" /> - </component> - <component name="WebRootContainer" /> - <component name="EjbManager" enabled="false" /> - <component name="JUnitProjectSettings"> - <option name="TEST_RUNNER" value="UI" /> - </component> - <component name="EntryPointsManager"> - <entry_points /> - </component> - <component name="EjbActionsConfiguration"> - <option name="NEW_MESSAGE_BEAN_LAST_PACKAGE" value="" /> - <option name="NEW_ENTITY_BEAN_LAST_PACKAGE" value="" /> - <option name="NEW_SESSION_BEAN_LAST_PACKAGE" value="" /> - </component> - <component name="CodeStyleManager"> - <option name="USE_DEFAULT_CODE_STYLE_SCHEME" value="true" /> - <option name="CODE_STYLE_SCHEME" value="" /> - </component> - <component name="ExportToHTMLSettings"> - <option name="PRINT_LINE_NUMBERS" value="false" /> - <option name="OPEN_IN_BROWSER" value="false" /> - <option name="OUTPUT_DIRECTORY" /> - </component> -</project> - Deleted: trunk/dbunit.iws =================================================================== --- trunk/dbunit.iws 2009-10-09 22:50:13 UTC (rev 1054) +++ trunk/dbunit.iws 2009-10-10 00:01:02 UTC (rev 1055) @@ -1,641 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project version="3" relativePaths="false"> - <component name="FileEditorManager"> - <history> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/dataset/csv/CsvProducer.java" line="107" column="9" vertical-scroll-proportion="0.3111511" horizontal-scroll-proportion="0.11302983" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/QuerySet.java" line="119" column="33" vertical-scroll-proportion="0.9938838" horizontal-scroll-proportion="0.4144427" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/dbunit/ext/hsqldb/HsqldbDataTypeFactoryTest.java" line="45" column="31" vertical-scroll-proportion="0.42446044" horizontal-scroll-proportion="0.38449612" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ext/hsqldb/HsqldbDataTypeFactory.java" line="35" column="32" vertical-scroll-proportion="0.46043167" horizontal-scroll-proportion="0.39689922" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/Operation.java" line="168" column="0" vertical-scroll-proportion="0.32930514" horizontal-scroll-proportion="0.0" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/AbstractStep.java" line="42" column="52" vertical-scroll-proportion="0.112021856" horizontal-scroll-proportion="0.6530612" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/Export.java" line="180" column="0" vertical-scroll-proportion="1.3251367" horizontal-scroll-proportion="0.0" /> - <source-position-entry url="jar://C:/java/jdk1.3.1_08/src.jar!/src/java/lang/reflect/InvocationTargetException.java" line="0" column="0" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.0" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/dbunit/ant/DbUnitTaskTest.java" line="51" column="39" vertical-scroll-proportion="0.28688523" horizontal-scroll-proportion="0.48979592" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/apache/tools/ant/taskdefs/TaskdefsTest.java" line="65" column="22" vertical-scroll-proportion="0.5054645" horizontal-scroll-proportion="0.27629513" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/DbUnitTask.java" line="0" column="0" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.0" /> - <source-position-entry url="file://$PROJECT_DIR$/src/xml/antTestBuildFile.xml" line="243" column="49" vertical-scroll-proportion="0.32786885" horizontal-scroll-proportion="0.61538464" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/dbunit/dataset/csv/CsvDataSetTest.java" line="71" column="66" vertical-scroll-proportion="0.23770492" horizontal-scroll-proportion="0.7237049" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/dataset/csv/CsvDataSet.java" line="35" column="25" vertical-scroll-proportion="0.510929" horizontal-scroll-proportion="0.31007752" /> - </history> - <open-files> - <source-position-entry url="file://$PROJECT_DIR$/src/xml/antTestBuildFile.xml" line="243" column="49" vertical-scroll-proportion="0.32786885" horizontal-scroll-proportion="0.61538464" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/dbunit/dataset/csv/CsvDataSetTest.java" line="71" column="66" vertical-scroll-proportion="0.23770492" horizontal-scroll-proportion="0.7237049" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/DbUnitTask.java" line="0" column="0" vertical-scroll-proportion="0.0" horizontal-scroll-proportion="0.0" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/apache/tools/ant/taskdefs/TaskdefsTest.java" line="65" column="22" vertical-scroll-proportion="0.5054645" horizontal-scroll-proportion="0.27629513" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/Export.java" line="180" column="0" vertical-scroll-proportion="1.3251367" horizontal-scroll-proportion="0.0" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/dataset/csv/CsvDataSet.java" line="35" column="25" vertical-scroll-proportion="0.510929" horizontal-scroll-proportion="0.31007752" selected="true" /> - <source-position-entry url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/AbstractStep.java" line="42" column="52" vertical-scroll-proportion="0.112021856" horizontal-scroll-proportion="0.6530612" /> - <source-position-entry url="file://$PROJECT_DIR$/src/test/org/dbunit/ant/DbUnitTaskTest.java" line="51" column="39" vertical-scroll-proportion="0.28688523" horizontal-scroll-proportion="0.48979592" /> - </open-files> - </component> - <component name="ToolWindowManager"> - <frame x="-4" y="-4" width="1032" height="747" extended-state="6" /> - <editor active="false" /> - <layout> - <window_info id="SQL" active="false" anchor="bottom" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.33" order="8" /> - <window_info id="Deep Find" active="false" anchor="left" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.33" order="3" /> - <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.24974722" order="1" /> - <window_info id="JavaSig" active="false" anchor="bottom" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.33" order="8" /> - <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.3301282" order="2" /> - <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.34245187" order="2" /> - <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="6" /> - <window_info id="Build" active="false" anchor="bottom" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.3301282" order="8" /> - <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="sliding" type="sliding" visible="false" weight="0.4" order="0" /> - <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="true" weight="0.25379172" order="0" /> - <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.6640867" order="3" /> - <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.24974722" order="1" /> - <window_info id="Find" active="true" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="true" weight="0.29647437" order="1" x="18" y="290" width="865" height="442" /> - <window_info id="Messages" active="false" anchor="bottom" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.3301282" order="8" /> - <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.4" order="5" /> - <window_info id="Web" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="2" /> - <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.33" order="0" /> - <window_info id="Java Bean" active="false" anchor="left" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.33029383" order="3" /> - <window_info id="EJB" active="false" anchor="left" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="3" /> - <window_info id="Duplications" active="false" anchor="left" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.33" order="3" /> - <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="docked" type="docked" visible="false" weight="0.25" order="4" /> - <window_info id="Hibernate Tools" active="false" anchor="right" auto_hide="true" internal_type="sliding" type="sliding" visible="false" weight="0.33" order="3" /> - </layout> - </component> - <component name="Debugger"> - <line_breakpoints> - <breakpoint url="file://$PROJECT_DIR$/src/test/org/dbunit/ant/DbUnitTaskTest.java" line="223"> - <option name="ENABLED" value="true" /> - <option name="SUSPEND_VM" value="true" /> - <option name="COUNT_FILTER_ENABLED" value="false" /> - <option name="COUNT_FILTER" value="0" /> - <option name="CONDITION_ENABLED" value="false" /> - <option name="CONDITION" /> - <option name="LOG_ENABLED" value="false" /> - <option name="LOG_EXPRESSION_ENABLED" value="false" /> - <option name="LOG_MESSAGE" /> - <option name="CLASS_FILTERS_ENABLED" value="false" /> - <option name="INVERSE_CLASS_FILLTERS" value="false" /> - <option name="SUSPEND_POLICY" value="SuspendAll" /> - </breakpoint> - <breakpoint url="file://$PROJECT_DIR$/src/java/org/dbunit/ant/DbUnitTask.java" line="265"> - <option name="ENABLED" value="true" /> - <option name="SUSPEND_VM" value="true" /> - <option name="COUNT_FILTER_ENABLED" value="false" /> - <option name="COUNT_FILTER" value="0" /> - <option name="CONDITION_ENABLED" value="false" /> - <option name="CONDITION" /> - <option name="LOG_ENABLED" value="false" /> - <option name="LOG_EXPRESSION_ENABLED" value="false" /> - <option name="LOG_MESSAGE" /> - <option name="CLASS_FILTERS_ENABLED" value="false" /> - <option name="INVERSE_CLASS_FILLTERS" value="false" /> - <option name="SUSPEND_POLICY" value="SuspendAll" /> - </breakpoint> - </line_breakpoints> - <exception_breakpoints> - <breakpoint_any> - <option name="NOTIFY_CAUGHT" value="true" /> - <option name="NOTIFY_UNCAUGHT" value="true" /> - <option name="ENABLED" value="false" /> - <option name="SUSPEND_VM" value="true" /> - <option name="COUNT_FILTER_ENABLED" value="false" /> - <option name="COUNT_FILTER" value="0" /> - <option name="CONDITION_ENABLED" value="false" /> - <option name="CONDITION" /> - <option name="LOG_ENABLED" value="false" /> - <option name="LOG_EXPRESSION_ENABLED" value="false" /> - <option name="LOG_MESSAGE" /> - <option name="CLASS_FILTERS_ENABLED" value="false" /> - <option name="INVERSE_CLASS_FILLTERS" value="false" /> - <option name="SUSPEND_POLICY" value="SuspendAll" /> - </breakpoint_any> - </exception_breakpoints> - <field_breakpoints /> - <method_breakpoints /> - </component> - <component name="DebuggerManager" /> - <component name="DebuggerSettings"> - <option name="TRACING_FILTERS_ENABLED" value="true" /> - <option name="TOSTRING_CLASSES_ENABLED" value="false" /> - <option name="VALUE_LOOKUP_DELAY" value="700" /> - <option name="DEBUGGER_TRANSPORT" value="0" /> - <option name="FORCE_CLASSIC_VM" value="true" /> - <option name="HIDE_DEBUGGER_ON_PROCESS_TERMINATION" value="false" /> - <option name="SKIP_SYNTHETIC_METHODS" value="true" /> - <option name="SKIP_CONSTRUCTORS" value="false" /> - <option name="STEP_THREAD_SUSPEND_POLICY" value="SuspendThread" /> - <option name="EVALUATION_TIMEOUT" value="1000" /> - <default_breakpoint_settings> - <option name="NOTIFY_CAUGHT" value="true" /> - <option name="NOTIFY_UNCAUGHT" value="true" /> - <option name="WATCH_MODIFICATION" value="true" /> - <option name="WATCH_ACCESS" value="true" /> - <option name="WATCH_ENTRY" value="true" /> - <option name="WATCH_EXIT" value="true" /> - <option name="ENABLED" value="true" /> - <option name="SUSPEND_VM" value="true" /> - <option name="COUNT_FILTER_ENABLED" value="false" /> - <option name="COUNT_FILTER" value="0" /> - <option name="CONDITION_ENABLED" value="false" /> - <option name="CONDITION" /> - <option name="LOG_ENABLED" value="false" /> - <option name="LOG_EXPRESSION_ENABLED" value="false" /> - <option name="LOG_MESSAGE" /> - <option name="CLASS_FILTERS_ENABLED" value="false" /> - <option name="INVERSE_CLASS_FILLTERS" value="false" /> - <option name="SUSPEND_POLICY" value="SuspendAll" /> - </default_breakpoint_settings> - <filter> - <option name="PATTERN" value="com.sun.*" /> - <option name="ENABLED" value="true" /> - </filter> - <filter> - <option name="PATTERN" value="java.*" /> - <option name="ENABLED" value="true" /> - </filter> - <filter> - <option name="PATTERN" value="javax.*" /> - <option name="ENABLED" value="true" /> - </filter> - <filter> - <option name="PATTERN" value="org.omg.*" /> - <option name="ENABLED" value="true" /> - </filter> - <filter> - <option name="PATTERN" value="sun.*" /> - <option name="ENABLED" value="true" /> - </filter> - <filter> - <option name="PATTERN" value="junit.*" /> - <option name="ENABLED" value="true" /> - </filter> - </component> - <component name="CompilerWorkspaceConfiguration"> - <option name="COMPILE_IN_BACKGROUND" value="false" /> - <option name="AUTO_SHOW_ERRORS_IN_EDITOR" value="true" /> - </component> - <component name="ErrorTreeViewConfiguration"> - <option name="IS_AUTOSCROLL_TO_SOURCE" value="false" /> - <option name="HIDE_WARNINGS" value="false" /> - </component> - <component name="DaemonCodeAnalyzer"> - <disable_hints /> - </component> - <component name="StructureViewFactory"> - <option name="SORT_MODE" value="0" /> - <option name="GROUP_OVERRIDINGS" value="true" /> - <option name="GROUP_IMPLEMENTINGS" value="true" /> - <option name="AUTOSCROLL_MODE" value="true" /> - <option name="SHOW_METHODS" value="true" /> - <option name="SHOW_FIELDS" value="true" /> - <option name="AUTOSCROLL_FROM_SOURCE" value="false" /> - <option name="GROUP_GETTERS_AND_SETTERS" value="true" /> - </component> - <component name="CvsConfiguration"> - <cvs_root> - <option name="METHOD" value="ext" /> - <option name="USER_NAME" value="fspinazzi" /> - <option name="HOST" value="cvs.sourceforge.net" /> - <option name="REPOSITORY" value="/cvsroot/dbunit " /> - </cvs_root> - <Checkout> - <option name="DATE_TAG" value="" /> - <option name="REVISION_TAG" value="" /> - <option name="PRUNE_EMPTY_DIRS" value="true" /> - <option name="RESET_STICKY_TAGS" value="false" /> - <option name="NON_RECURSIVE" value="false" /> - <option name="CREATE_WORKING_DIR" value="" /> - <option name="ADDITIONAL_OPTIONS" value="" /> - </Checkout> - <Update> - <option name="DATE_TAG" value="" /> - <option name="REVISION_TAG" value="" /> - <option name="PRUNE_EMPTY_DIRS" value="true" /> - <option name="RESET_STICKY_TAGS" value="false" /> - <option name="NON_RECURSIVE" value="false" /> - <option name="CREATE_MISSING_DIRECTORIES" value="true" /> - <option name="DONT_CHANGE_FILES" value="false" /> - <option name="QUIET_MODE" value="false" /> - <option name="ADDITIONAL_OPTIONS" value="" /> - </Update> - <Commit> - <option name="NON_RECURSIVE" value="false" /> - <option name="REVISION_TAG" /> - <option name="LOG_MESSAGE" /> - <option name="ADDITIONAL_OPTIONS" /> - </Commit> - <Diff> - <option name="REVISION_TAG" value="HEAD" /> - <option name="DATE_TAG" value="" /> - <option name="IGNORE_WHITESPACE" value="false" /> - </Diff> - <Add> - <option name="ADD_AS_BINARY" value="false" /> - <option name="LOG_MESSAGE" /> - </Add> - <Status> - <option name="NON_RECURSIVE" value="false" /> - <option name="INCLUDE_TAGS" value="false" /> - </Status> - <Edit> - <option name="NON_RECURSIVE" value="false" /> - <option name="FORCE_RECURSIVE" value="false" /> - <option name="EDIT" value="false" /> - <option name="UNEDIT" value="false" /> - <option name="COMMIT" value="false" /> - <option name="ALL" value="true" /> - <option name="NONE" value="false" /> - </Edit> - <Remove> - <option name="NON_RECURSIVE" value="false" /> - <option name="FORCE_RECURSIVE" value="false" /> - <option name="DELETE_FILE" value="false" /> - </Remove> - <Log> - <option name="DEFAULT_BRANCH" value="false" /> - <option name="NON_RECURSIVE" value="false" /> - <option name="QUIET_MODE" value="true" /> - <option name="ADDITIONAL_OPTIONS" value="" /> - </Log> - <Editors> - <option name="NON_RECURSIVE" value="false" /> - <option name="FORCE_RECURSIVE" value="false" /> - </Editors> - <option name="CLIENT_PATH" /> - <option name="EXTERNAL_DIFF_PATH" /> - <option name="USE_EXTERNAL_DIFF" value="false" /> - <option name="WORKING_FILES_READONLY" value="false" /> - <option name="COMPRESSION_LEVEL" value="0" /> - <option name="ADDITIONAL_OPTIONS" value="" /> - <option name="BINARY_FILES_EXTENSIONS" /> - <option name="REUSE_LAST_LOG_MESSAGE" value="false" /> - <option name="PUT_FOCUS_INTO_LOG_MESSAGE" value="false" /> - <option name="SHOW_UPDATE_OPTIONS" value="true" /> - <option name="SHOW_COMMIT_OPTIONS" value="true" /> - <option name="SHOW_DIFF_OPTIONS" value="true" /> - <option name="SHOW_ADD_OPTIONS" value="true" /> - <option name="SHOW_STATUS_OPTIONS" value="true" /> - <option name="SHOW_EDIT_OPTIONS" value="true" /> - <option name="SHOW_UNEDIT_OPTIONS" value="true" /> - <option name="SHOW_REMOVE_OPTIONS" value="true" /> - <option name="SHOW_LOG_OPTIONS" value="true" /> - <option name="SHOW_EDITORS_OPTIONS" value="true" /> - <option name="HIDE_UNKNOWN_FILES" value="false" /> - <option name="HIDE_MISSING_FILES" value="false" /> - <option name="HIDE_UP_TO_DATE_FILES" value="false" /> - </component> - <component name="CvsVcs"> - <expanded_paths /> - </component> - <component name="ProjectViewSettings"> - <navigator currentView="ProjectPane" flattenPackages="false" showMembers="false" showStructure="false" autoscrollToSource="false" splitterProportion="0.5" /> - <view id="ProjectPane"> - <expanded_node type="directory" url="file://$PROJECT_DIR$" /> - </view> - <view id="SourcepathPane" /> - <view id="ClasspathPane" /> - </component> - <component name="RunManager"> - <option name="SHOW_SETTINGS_BEFORE_RUNNING" value="true" /> - <option name="COMPILE_BEFORE_RUNNING" value="true" /> - <activeType name="Application" /> - <configuration name="<template>" type="Application" default="true" selected="false"> - <option name="MAIN_CLASS_NAME" /> - <option name="VM_PARAMETERS" /> - <option name="PROGRAM_PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="<template>" type="Applet" default="true" selected="false"> - <option name="MAIN_CLASS_NAME" /> - <option name="HTML_FILE_NAME" /> - <option name="HTML_USED" value="false" /> - <option name="WIDTH" value="400" /> - <option name="HEIGHT" value="300" /> - <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/config/appletviewer.policy" /> - <option name="VM_PARAMETERS" /> - </configuration> - <configuration name="<template>" type="JUnit" default="true" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" /> - <option name="METHOD_NAME" /> - <option name="TEST_OBJECT" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="<template>" type="Remote" default="true" selected="false"> - <option name="USE_SOCKET_TRANSPORT" value="true" /> - <option name="SERVER_MODE" value="false" /> - <option name="SHMEM_ADDRESS" value="javadebug" /> - <option name="HOST" value="localhost" /> - <option name="PORT" value="5005" /> - </configuration> - <configuration name="<template>" type="WebApp" default="true" selected="false"> - <WebServerIntegration name="" /> - <Host>localhost</Host> - <Port>5050</Port> - <LaunchServer>false</LaunchServer> - </configuration> - <configuration name="AllTests" type="Application" default="false" selected="false"> - <option name="MAIN_CLASS_NAME" value="org.dbunit.AllTests" /> - <option name="VM_PARAMETERS" /> - <option name="PROGRAM_PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="DbUnitTaskTest" type="Application" default="false" selected="true"> - <option name="MAIN_CLASS_NAME" value="org.dbunit.ant.DbUnitTaskTest" /> - <option name="VM_PARAMETERS" /> - <option name="PROGRAM_PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="CsvProducerTest.produceAndInsertToDatabase" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.CsvProducerTest" /> - <option name="METHOD_NAME" value="produceAndInsertToDatabase" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="TestTmpCSVReader" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.TestTmpCSVReader" /> - <option name="METHOD_NAME" /> - <option name="TEST_OBJECT" value="class" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="TestTmpCSVReader.test" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.TestTmpCSVReader" /> - <option name="METHOD_NAME" value="test" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="TestTmpCSVReader.testUnquotedWithNewline" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.TestTmpCSVReader" /> - <option name="METHOD_NAME" value="testUnquotedWithNewline" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="CsvParserTest" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.CsvParserTest" /> - <option name="METHOD_NAME" /> - <option name="TEST_OBJECT" value="class" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="CsvParserTest.testAFileCanContainFieldWithNewLine" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.CsvParserTest" /> - <option name="METHOD_NAME" value="testAFileCanContainFieldWithNewLine" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="CsvProducerTest.produceAndInsertToDatabase" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.CsvProducerTest" /> - <option name="METHOD_NAME" value="produceAndInsertToDatabase" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="CsvProducerTest" type="JUnit" default="false" selected="true"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.CsvProducerTest" /> - <option name="METHOD_NAME" /> - <option name="TEST_OBJECT" value="class" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="CsvDataSetWriterTest.testEscapeEscape" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.dataset.csv.CsvDataSetWriterTest" /> - <option name="METHOD_NAME" value="testEscapeEscape" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="DbUnitTaskTest.testExportCsv" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.ant.DbUnitTaskTest" /> - <option name="METHOD_NAME" value="testExportCsv" /> - <option name="TEST_OBJECT" value="method" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - <configuration name="DbUnitTaskTest" type="JUnit" default="false" selected="false"> - <option name="PACKAGE_NAME" /> - <option name="MAIN_CLASS_NAME" value="org.dbunit.ant.DbUnitTaskTest" /> - <option name="METHOD_NAME" /> - <option name="TEST_OBJECT" value="class" /> - <option name="VM_PARAMETERS" /> - <option name="PARAMETERS" /> - <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> - </configuration> - </component> - <component name="BookmarkManager" /> - <component name="Commander"> - <leftPanel view="Project" /> - <rightPanel view="Project" /> - <splitter proportion="0.5" /> - </component> - <component name="PropertiesComponent"> - <property name="GoToClass.includeJavaFiles" value="false" /> - <property name="MemberChooser.copyJavadoc" value="false" /> - <property name="GoToClass.includeLibraries" value="false" /> - <property name="MemberChooser.showClasses" value="true" /> - <property name="MemberChooser.sorted" value="false" /> - <property name="GoToFile.includeJavaFiles" value="false" /> - <property name="GoToClass.toSaveIncludeLibraries" value="false" /> - </component> - <component name="SelectInManager" /> - <component name="VssConfiguration"> - <CheckoutOptions> - <option name="COMMENT" value="" /> - <option name="DO_NOT_GET_LATEST_VERSION" value="false" /> - <option name="REPLACE_WRITABLE" value="false" /> - <option name="RECURSIVE" value="false" /> - </CheckoutOptions> - <CheckinOptions> - <option name="COMMENT" value="" /> - <option name="KEEP_CHECKED_OUT" value="false" /> - <option name="RECURSIVE" value="false" /> - </CheckinOptions> - <AddOptions> - <option name="COMMENT" value="" /> - <option name="STORE_ONLY_LATEST_VERSION" value="false" /> - <option name="CHECK_OUT_IMMEDIATELY" value="false" /> - <option name="FILE_TYPE" value="0" /> - </AddOptions> - <UndocheckoutOptions> - <option name="MAKE_WRITABLE" value="false" /> - <option name="REPLACE_LOCAL_COPY" value="0" /> - <option name="RECURSIVE" value="false" /> - </UndocheckoutOptions> - <DiffOptions> - <option name="IGNORE_WHITE_SPACE" value="false" /> - <option name="IGNORE_CASE" value="false" /> - </DiffOptions> - <GetOptions> - <option name="REPLACE_WRITABLE" value="0" /> - <option name="MAKE_WRITABLE" value="false" /> - <option name="RECURSIVE" value="false" /> - </GetOptions> - <option name="CLIENT_PATH" value="" /> - <option name="SRCSAFEINI_PATH" value="" /> - <option name="USER_NAME" value="" /> - <option name="PWD" value="" /> - <option name="SHOW_CHECKOUT_OPTIONS" value="true" /> - <option name="SHOW_CHECKIN_OPTIONS" value="true" /> - <option name="SHOW_ADD_OPTIONS" value="true" /> - <option name="SHOW_UNDOCHECKOUT_OPTIONS" value="true" /> - <option name="SHOW_DIFF_OPTIONS" value="true" /> - <option name="SHOW_GET_OPTIONS" value="true" /> - <option name="USE_EXTERNAL_DIFF" value="false" /> - <option name="EXTERNAL_DIFF_PATH" value="" /> - <option name="REUSE_LAST_COMMENT" value="false" /> - <option name="PUT_FOCUS_INTO_COMMENT" value="false" /> - </component> - <component name="HierarchyBrowserManager"> - <option name="SHOW_PACKAGES" value="false" /> - <option name="IS_AUTOSCROLL_TO_SOURCE" value="true" /> - <option name="SORT_ALPHABETICALLY" value="false" /> - </component> - <component name="WebViewSettings"> - <webview flattenPackages="false" showMembers="false" autoscrollToSource="false" /> - </component> - <component name="EjbViewSettings"> - <EjbView showMembers="false" autoscrollToSource="false" /> - </component> - <component name="LvcsConfiguration"> - <option name="LOCAL_VCS_ENABLED" value="true" /> - <option name="LOCAL_VCS_PURGING_PERIOD" value="259200000" /> - <option name="ADD_LABEL_ON_PROJECT_OPEN" value="true" /> - <option name="ADD_LABEL_ON_PROJECT_COMPILATION" value="true" /> - <option name="ADD_LABEL_ON_FILE_PACKAGE_COMPILATION" value="true" /> - <option name="ADD_LABEL_ON_PROJECT_MAKE" value="true" /> - <option name="ADD_LABEL_ON_RUNNING" value="true" /> - <option name="ADD_LABEL_ON_DEBUGGING" value="true" /> - <option name="ADD_LABEL_ON_UNIT_TEST" value="true" /> - <option name="MARK_EXTERNAL_CHANGES_AS_UP_TO_DATE" value="true" /> - </component> - <component name="InspectionManager"> - <option name="AUTOSCROLL_TO_SOURCE" value="false" /> - <option name="SPLITTER_PROPORTION" value="0.5" /> - <inspection_tool class="Unused declaration" enabled="false"> - <option name="ADD_MAINS_TO_ENTRIES" value="true" /> - <option name="ADD_JUNIT_TO_ENTRIES" value="true" /> - <option name="ADD_EJB_TO_ENTRIES" value="true" /> - <option name="ADD_APPLET_TO_ENTRIES" value="true" /> - <option name="ADD_SERVLET_TO_ENTRIES" value="true" /> - <option name="ADD_NONJAVA_TO_ENTRIES" value="true" /> - </inspection_tool> - <inspection_tool class="Declaration access can be weaker" enabled="true"> - <option name="SUGGEST_PACKAGE_LOCAL_FOR_MEMBERS" value="true" /> - <option name="SUGGEST_PACKAGE_LOCAL_FOR_TOP_CLASSES" value="true" /> - <option name="SUGGEST_PRIVATE_FOR_INNERS" value="false" /> - </inspection_tool> - <inspection_tool class="Declaration can have static modifier" enabled="true" /> - <inspection_tool class="Declaration can have final modifier" enabled="true"> - <option name="REPORT_CLASSES" value="false" /> - <option name="REPORT_METHODS" value="false" /> - <option name="REPORT_FIELDS" value="true" /> - </inspection_tool> - <inspection_tool class="Unused method parameters" enabled="true" /> - <inspection_tool class="Actual method parameter is the same constant" enabled="false" /> - <inspection_tool class="Unused method return value" enabled="false" /> - <inspection_tool class="Method returns the same value" enabled="false" /> - <inspection_tool class="Empty method" enabled="false" /> - <inspection_tool class="Redundant throws clause" enabled="false" /> - <inspection_tool class="Constant conditions & exceptions" enabled="false" /> - <inspection_tool class="Unused assignment" enabled="false" /> - <inspection_tool class="Redundant type cast" enabled="false" /> - <inspection_tool class="Local variable or parameter can be final" enabled="false"> - <option name="REPORT_VARIABLES" value="true" /> - <option name="REPORT_PARAMETERS" value="true" /> - </inspection_tool> - <inspection_tool class="Declaration has javadoc problems" enabled="true"> - <option name="TOP_LEVEL_CLASS_OPTIONS"> - <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="public" /> - <option name="REQUIRED_TAGS" value="" /> - </value> - </option> - <option name="INNER_CLASS_OPTIONS"> - <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="protected" /> - <option name="REQUIRED_TAGS" value="" /> - </value> - </option> - <option name="METHOD_OPTIONS"> - <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="protected" /> - <option name="REQUIRED_TAGS" value="@return@param@throws or @exception" /> - </value> - </option> - <option name="FIELD_OPTIONS"> - <value> - <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="protected" /> - <option name="REQUIRED_TAGS" value="" /> - </value> - </option> - </inspection_tool> - <inspection_tool class="Deprecated API usage" enabled="false" /> - <inspection_tool class="equals() and hashCode() not paired" enabled="false" /> - </component> - <component name="TodoView" selected-index="0"> - <todo-panel id="selected-file"> - <are-packages-shown value="false" /> - <flatten-packages value="false" /> - <is-autoscroll-to-source value="true" /> - </todo-panel> - <todo-panel id="all"> - <are-packages-shown value="true" /> - <flatten-packages value="false" /> - <is-autoscroll-to-source value="true" /> - </todo-panel> - </component> - <component name="VcsManagerConfiguration"> - <option name="ACTIVE_VCS_NAME" value="" /> - </component> - <component name="dashboard.Configurable"> - <option name="showingStartFixConfirmationMessage" value="true" /> - <option name="showingPopUpsOnFixEvent" value="true" /> - <option name="userName" value="fede" /> - <option name="resultsURL" value="" /> - <option name="browserPath" value="" /> - <option name="multicastHost" value="236.1.2.3" /> - <option name="multicastPort" value="3274" /> - </component> - <component name="JavaSig" /> - <component name="SQL"> - <htmlExport table="border: 1px solid black; border-spacing:0px" cell="border: 1px solid black" header="background: darkgrey; font-weight:bold; text-align: center" row1="background: white" row2="background: lightgrey" alternate="true" interval="1" /> - <csvExport delimiter="," text=""" /> - <partialExecute value="0" /> - <rowLimit enabled="true" value="1000" /> - <primaryKeyCols enabled="true" /> - <savePasswords enabled="false" encode="true" /> - <datesWithTime enabled="true" /> - <resizeColumns toHeader="true" toContent="true" /> - </component> - <component name="StarteamConfiguration"> - <option name="SERVER" value="" /> - <option name="PORT" value="49201" /> - <option name="USER" value="" /> - <option name="PASSWORD" value="" /> - <option name="PROJECT" value="" /> - <option name="VIEW" value="" /> - <option name="ALTERNATIVE_WORKING_PATH" value="" /> - </component> -</project> - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-24 09:54:28
|
Revision: 1047 http://dbunit.svn.sourceforge.net/dbunit/?rev=1047&view=rev Author: rlogiacco Date: 2009-09-24 09:54:21 +0000 (Thu, 24 Sep 2009) Log Message: ----------- third typo fixed: today isn't my day Modified Paths: -------------- trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2009-09-24 09:36:59 UTC (rev 1046) +++ trunk/src/site/xdoc/index.xml 2009-09-24 09:54:21 UTC (rev 1047) @@ -28,6 +28,7 @@ <tr> <td>2009-09-24</td> <td>Another member joined the DbUnit project developers group: welcome John Hurst!</td> + </tr> <tr> <td>2009-09-20</td> <td>Your contributions has led us to cut a new release: DbUnit 2.4.6 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-24 09:37:06
|
Revision: 1046 http://dbunit.svn.sourceforge.net/dbunit/?rev=1046&view=rev Author: rlogiacco Date: 2009-09-24 09:36:59 +0000 (Thu, 24 Sep 2009) Log Message: ----------- another typo Modified Paths: -------------- trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2009-09-24 09:35:57 UTC (rev 1045) +++ trunk/src/site/xdoc/index.xml 2009-09-24 09:36:59 UTC (rev 1046) @@ -27,7 +27,7 @@ <table border="1"> <tr> <td>2009-09-24</td> - <td>Another member joined the DbUnit project developers group: welcome John Hurst!</tr> + <td>Another member joined the DbUnit project developers group: welcome John Hurst!</td> <tr> <td>2009-09-20</td> <td>Your contributions has led us to cut a new release: DbUnit 2.4.6 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-24 09:36:04
|
Revision: 1045 http://dbunit.svn.sourceforge.net/dbunit/?rev=1045&view=rev Author: rlogiacco Date: 2009-09-24 09:35:57 +0000 (Thu, 24 Sep 2009) Log Message: ----------- fixed typo Modified Paths: -------------- trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2009-09-24 09:34:10 UTC (rev 1044) +++ trunk/src/site/xdoc/index.xml 2009-09-24 09:35:57 UTC (rev 1045) @@ -30,7 +30,7 @@ <td>Another member joined the DbUnit project developers group: welcome John Hurst!</tr> <tr> <td>2009-09-20</td> - <td>Your contributions has led us to cut a new release: DbUnit 2.4.6 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</tr> + <td>Your contributions has led us to cut a new release: DbUnit 2.4.6 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</td> </tr> <tr> <td>2009-05-23</td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-24 09:34:16
|
Revision: 1044 http://dbunit.svn.sourceforge.net/dbunit/?rev=1044&view=rev Author: rlogiacco Date: 2009-09-24 09:34:10 +0000 (Thu, 24 Sep 2009) Log Message: ----------- added John Hurst among developers Modified Paths: -------------- trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2009-09-24 08:26:51 UTC (rev 1043) +++ trunk/src/site/xdoc/index.xml 2009-09-24 09:34:10 UTC (rev 1044) @@ -26,8 +26,11 @@ <section name="News"> <table border="1"> <tr> + <td>2009-09-24</td> + <td>Another member joined the DbUnit project developers group: welcome John Hurst!</tr> + <tr> <td>2009-09-20</td> - <td>Your contributions has led us to cut a new release: DbUnit 2.4.6 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</td> + <td>Your contributions has led us to cut a new release: DbUnit 2.4.6 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</tr> </tr> <tr> <td>2009-05-23</td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-20 15:22:03
|
Revision: 1040 http://dbunit.svn.sourceforge.net/dbunit/?rev=1040&view=rev Author: rlogiacco Date: 2009-09-20 15:21:49 +0000 (Sun, 20 Sep 2009) Log Message: ----------- added sources and javadoc jars generation to the release deployment Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-09-20 14:59:30 UTC (rev 1039) +++ trunk/pom.xml 2009-09-20 15:21:49 UTC (rev 1040) @@ -369,7 +369,7 @@ <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <configuration> - <goals>javadoc:javadoc site changes:announcement-generate assembly:assembly deploy</goals> + <goals>javadoc:javadoc site changes:announcement-generate assembly:assembly javadoc:jar source:jar deploy</goals> </configuration> </plugin> <plugin> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-20 14:59:39
|
Revision: 1039 http://dbunit.svn.sourceforge.net/dbunit/?rev=1039&view=rev Author: rlogiacco Date: 2009-09-20 14:59:30 +0000 (Sun, 20 Sep 2009) Log Message: ----------- changelog and front pages updated Modified Paths: -------------- trunk/src/changes/changes.xml trunk/src/site/xdoc/index.xml Modified: trunk/src/changes/changes.xml =================================================================== --- trunk/src/changes/changes.xml 2009-09-20 14:55:56 UTC (rev 1038) +++ trunk/src/changes/changes.xml 2009-09-20 14:59:30 UTC (rev 1039) @@ -10,7 +10,9 @@ </properties> <body> - <release version="2.4.6-SNAPSHOT" date="TBD" description="(no description)"> + <release version="2.4.7-SNAPSHOT" date="TBD" description="(no description)"> + </release> + <release version="2.4.6" date="Sep 20, 2009" description="Bugfixes and some database specific additions"> <action dev="rlogiacco" type="add" issue="284432" due-to="JamesR">Add support for interval type on postgres</action> <action dev="felipeal" type="update">Changed some verbose logging statements from INFO to DEBUG level</action> <action dev="gommma" type="fix" issue="2797698" due-to="mkienenb">DefaultDataSet is incompatible w/ AbstractDataSet's IDataSet</action> Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2009-09-20 14:55:56 UTC (rev 1038) +++ trunk/src/site/xdoc/index.xml 2009-09-20 14:59:30 UTC (rev 1039) @@ -26,6 +26,10 @@ <section name="News"> <table border="1"> <tr> + <td>2009-09-20</td> + <td>Your contributions has led us to cut a new release: DbUnit 2.4.5 is out. Here a detailed <a href="changes-report.html#a2.4.6">changes</a> report.</td> + </tr> + <tr> <td>2009-05-23</td> <td>Another bugfixing release has been cut: DbUnit 2.4.5 is out. Here a detailed <a href="changes-report.html#a2.4.5">changes</a> report.</td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-20 14:56:03
|
Revision: 1038 http://dbunit.svn.sourceforge.net/dbunit/?rev=1038&view=rev Author: rlogiacco Date: 2009-09-20 14:55:56 +0000 (Sun, 20 Sep 2009) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-09-20 14:55:14 UTC (rev 1037) +++ trunk/pom.xml 2009-09-20 14:55:56 UTC (rev 1038) @@ -4,7 +4,7 @@ <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <packaging>jar</packaging> - <version>2.4.6</version> + <version>2.4.7-SNAPSHOT</version> <name>DbUnit Framework</name> <url>http://dbunit.sourceforge.net</url> <inceptionYear>2002</inceptionYear> @@ -23,9 +23,9 @@ <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> </properties> <scm> - <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.6</connection> - <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.6</developerConnection> - <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.6</url> + <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</connection> + <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</developerConnection> + <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</url> </scm> <issueManagement> <system>SourceForge</system> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-20 14:55:20
|
Revision: 1037 http://dbunit.svn.sourceforge.net/dbunit/?rev=1037&view=rev Author: rlogiacco Date: 2009-09-20 14:55:14 +0000 (Sun, 20 Sep 2009) Log Message: ----------- [maven-scm] copy for tag dbunit-2.4.6 Added Paths: ----------- tags/dbunit-2.4.6/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-09-20 14:54:02
|
Revision: 1036 http://dbunit.svn.sourceforge.net/dbunit/?rev=1036&view=rev Author: rlogiacco Date: 2009-09-20 14:53:55 +0000 (Sun, 20 Sep 2009) Log Message: ----------- [maven-release-plugin] prepare release dbunit-2.4.6 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-09-15 17:56:59 UTC (rev 1035) +++ trunk/pom.xml 2009-09-20 14:53:55 UTC (rev 1036) @@ -4,7 +4,7 @@ <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <packaging>jar</packaging> - <version>2.4.6-SNAPSHOT</version> + <version>2.4.6</version> <name>DbUnit Framework</name> <url>http://dbunit.sourceforge.net</url> <inceptionYear>2002</inceptionYear> @@ -23,9 +23,9 @@ <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> </properties> <scm> - <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</connection> - <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</developerConnection> - <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</url> + <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.6</connection> + <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.6</developerConnection> + <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.6</url> </scm> <issueManagement> <system>SourceForge</system> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-08-25 16:58:47
|
Revision: 1028 http://dbunit.svn.sourceforge.net/dbunit/?rev=1028&view=rev Author: rlogiacco Date: 2009-08-25 16:58:33 +0000 (Tue, 25 Aug 2009) Log Message: ----------- [284432] Add support for interval type on postgres Submitted by: JamesR Modified Paths: -------------- trunk/src/changes/changes.xml trunk/src/java/org/dbunit/ext/postgresql/PostgresqlDataTypeFactory.java trunk/src/test/org/dbunit/ext/postgresql/PostgresqlDataTypeFactoryTest.java Added Paths: ----------- trunk/src/java/org/dbunit/ext/postgresql/IntervalType.java Modified: trunk/src/changes/changes.xml =================================================================== --- trunk/src/changes/changes.xml 2009-08-19 20:07:23 UTC (rev 1027) +++ trunk/src/changes/changes.xml 2009-08-25 16:58:33 UTC (rev 1028) @@ -11,6 +11,7 @@ <body> <release version="2.4.6-SNAPSHOT" date="TBD" description="(no description)"> + <action dev="rlogiacco" type="add" issue="284432" due-to="JamesR">Add support for interval type on postgres</action> <action dev="felipeal" type="update">Changed some verbose logging statements from INFO to DEBUG level</action> <action dev="gommma" type="fix" issue="2797698" due-to="mkienenb">DefaultDataSet is incompatible w/ AbstractDataSet's IDataSet</action> <action dev="gommma" type="fix" issue="2818981" due-to="verreckenk">XlsTable - empty excel columns cause problem</action> Added: trunk/src/java/org/dbunit/ext/postgresql/IntervalType.java =================================================================== --- trunk/src/java/org/dbunit/ext/postgresql/IntervalType.java (rev 0) +++ trunk/src/java/org/dbunit/ext/postgresql/IntervalType.java 2009-08-25 16:58:33 UTC (rev 1028) @@ -0,0 +1,93 @@ +/* + * + * The DbUnit Database Testing Framework + * Copyright (C)2002-2004, DbUnit.org + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package org.dbunit.ext.postgresql; + +import java.lang.reflect.Constructor; +import java.lang.reflect.InvocationTargetException; +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.sql.Types; + +import org.dbunit.dataset.datatype.AbstractDataType; +import org.dbunit.dataset.datatype.TypeCastException; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * Adapter to handle conversion between Postgresql + * native Interval type and strings. + * + * @author James A. Russo (jr...@ha...) + * @since 2.4.6 (Aug 25, 2009) + */ +public class IntervalType + extends AbstractDataType { + + /** + * Logger for this class + */ + private static final Logger logger = LoggerFactory.getLogger(IntervalType.class); + + + public IntervalType() { + super("interval", Types.OTHER, String.class, false); + } + + public Object getSqlValue(int column, ResultSet resultSet) throws SQLException, TypeCastException { + return resultSet.getString(column); + } + + public void setSqlValue(Object interval, int column, + PreparedStatement statement) throws SQLException, TypeCastException { + statement.setObject(column, getInterval(interval, statement.getConnection())); + } + + public Object typeCast(Object arg0) throws TypeCastException { + return arg0.toString(); + } + + private Object getInterval(Object value, Connection connection) throws TypeCastException { + logger.debug("getInterval(value={}, connection={}) - start", value, connection); + + Object tempInterval = null; + + try { + Class aPGIntervalClass = super.loadClass("org.postgresql.util.PGInterval", connection); + Constructor ct = aPGIntervalClass.getConstructor(null); + tempInterval = ct.newInstance(new Object[]{value}); + } catch (ClassNotFoundException e) { + throw new TypeCastException(value, this, e); + } catch (InvocationTargetException e) { + throw new TypeCastException(value, this, e); + } catch (NoSuchMethodException e) { + throw new TypeCastException(value, this, e); + } catch (IllegalAccessException e) { + throw new TypeCastException(value, this, e); + } catch (InstantiationException e) { + throw new TypeCastException(value, this, e); + } + + return tempInterval; + } +} Property changes on: trunk/src/java/org/dbunit/ext/postgresql/IntervalType.java ___________________________________________________________________ Added: svn:executable + * Modified: trunk/src/java/org/dbunit/ext/postgresql/PostgresqlDataTypeFactory.java =================================================================== --- trunk/src/java/org/dbunit/ext/postgresql/PostgresqlDataTypeFactory.java 2009-08-19 20:07:23 UTC (rev 1027) +++ trunk/src/java/org/dbunit/ext/postgresql/PostgresqlDataTypeFactory.java 2009-08-25 16:58:33 UTC (rev 1028) @@ -53,6 +53,9 @@ // Treat Postgresql UUID types as VARCHARS if ("uuid".equals(sqlTypeName)) return new UuidType(); + // Intervals are custom types + else if ("interval".equals(sqlTypeName)) + return new IntervalType(); else if ("inet".equals(sqlTypeName)) return new InetType(); else Modified: trunk/src/test/org/dbunit/ext/postgresql/PostgresqlDataTypeFactoryTest.java =================================================================== --- trunk/src/test/org/dbunit/ext/postgresql/PostgresqlDataTypeFactoryTest.java 2009-08-19 20:07:23 UTC (rev 1027) +++ trunk/src/test/org/dbunit/ext/postgresql/PostgresqlDataTypeFactoryTest.java 2009-08-25 16:58:33 UTC (rev 1028) @@ -28,6 +28,7 @@ /** * * @author Jarvis Cochrane (ja...@co...) + * @author Roberto Lo Giacco (rlo...@us...urceforge.ent) * @since 2.4.5 (Apr 27, 2009) */ public class PostgresqlDataTypeFactoryTest extends TestCase { @@ -50,7 +51,19 @@ DataType result = instance.createDataType(sqlType, sqlTypeName); assertTrue(result instanceof UuidType); } + + public void testCreateIntervalType() throws Exception { + PostgresqlDataTypeFactory instance = new PostgresqlDataTypeFactory(); + + // Test interval type created properly + int sqlType = Types.OTHER; + String sqlTypeName = "interval"; + + DataType result = instance.createDataType(sqlType, sqlTypeName); + assertTrue(result instanceof IntervalType); + } + public void testCreateInetType() throws Exception { PostgresqlDataTypeFactory instance = new PostgresqlDataTypeFactory(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fel...@us...> - 2009-06-08 23:46:02
|
Revision: 1017 http://dbunit.svn.sourceforge.net/dbunit/?rev=1017&view=rev Author: felipeal Date: 2009-06-08 23:45:47 +0000 (Mon, 08 Jun 2009) Log Message: ----------- added item for my last change Modified Paths: -------------- trunk/src/changes/changes.xml Modified: trunk/src/changes/changes.xml =================================================================== --- trunk/src/changes/changes.xml 2009-06-08 21:14:11 UTC (rev 1016) +++ trunk/src/changes/changes.xml 2009-06-08 23:45:47 UTC (rev 1017) @@ -11,6 +11,7 @@ <body> <release version="2.4.6-SNAPSHOT" date="TBD" description="(no description)"> + <action dev="felipeal" type="update">Changed some verbose logging statements from INFO to DEBUG level</action> <action dev="gommma" type="fix" issue="2797698" due-to="mkienenb">DefaultDataSet is incompatible w/ AbstractDataSet's IDataSet</action> </release> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fel...@us...> - 2009-06-08 21:15:23
|
Revision: 1016 http://dbunit.svn.sourceforge.net/dbunit/?rev=1016&view=rev Author: felipeal Date: 2009-06-08 21:14:11 +0000 (Mon, 08 Jun 2009) Log Message: ----------- replaced some logging statements from info() to debug() Modified Paths: -------------- trunk/src/java/org/dbunit/database/DatabaseDataSet.java trunk/src/java/org/dbunit/util/SQLHelper.java Modified: trunk/src/java/org/dbunit/database/DatabaseDataSet.java =================================================================== --- trunk/src/java/org/dbunit/database/DatabaseDataSet.java 2009-06-05 11:21:55 UTC (rev 1015) +++ trunk/src/java/org/dbunit/database/DatabaseDataSet.java 2009-06-08 21:14:11 UTC (rev 1016) @@ -198,7 +198,7 @@ ResultSet resultSet = metadataHandler.getTables(databaseMetaData, schema, tableType); - logger.info(SQLHelper.getDatabaseInfo(jdbcConnection.getMetaData())); + logger.debug(SQLHelper.getDatabaseInfo(jdbcConnection.getMetaData())); try { Modified: trunk/src/java/org/dbunit/util/SQLHelper.java =================================================================== --- trunk/src/java/org/dbunit/util/SQLHelper.java 2009-06-05 11:21:55 UTC (rev 1015) +++ trunk/src/java/org/dbunit/util/SQLHelper.java 2009-06-08 21:14:11 UTC (rev 1016) @@ -549,7 +549,7 @@ } /** - * Checks whether two given values are unequal and if so print a log message (level INFO) + * Checks whether two given values are unequal and if so print a log message (level DEBUG) * @param oldValue The old value of a property * @param newValue The new value of a property * @param message The message to be logged @@ -561,7 +561,7 @@ if(logger.isInfoEnabled()) { if(oldValue != null && !oldValue.equals(newValue)) - logger.info("{}. {} oldValue={} newValue={}", new Object[] {source, message, oldValue, newValue}); + logger.debug("{}. {} oldValue={} newValue={}", new Object[] {source, message, oldValue, newValue}); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-06-05 11:22:01
|
Revision: 1015 http://dbunit.svn.sourceforge.net/dbunit/?rev=1015&view=rev Author: rlogiacco Date: 2009-06-05 11:21:55 +0000 (Fri, 05 Jun 2009) Log Message: ----------- updated front page to report the latest release Modified Paths: -------------- trunk/src/site/xdoc/index.xml Modified: trunk/src/site/xdoc/index.xml =================================================================== --- trunk/src/site/xdoc/index.xml 2009-06-01 18:44:23 UTC (rev 1014) +++ trunk/src/site/xdoc/index.xml 2009-06-05 11:21:55 UTC (rev 1015) @@ -26,6 +26,10 @@ <section name="News"> <table border="1"> <tr> + <td>2009-05-23</td> + <td>Another bugfixing release has been cut: DbUnit 2.4.5 is out. Here a detailed <a href="changes-report.html#a2.4.5">changes</a> report.</td> + </tr> + <tr> <td>2009-02-24</td> <td>We are proud to announce the 2.4.4 release has been cut. Here a detailed <a href="changes-report.html#a2.4.4">changes</a> report.</td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-22 15:43:06
|
Revision: 1013 http://dbunit.svn.sourceforge.net/dbunit/?rev=1013&view=rev Author: rlogiacco Date: 2009-05-22 15:42:56 +0000 (Fri, 22 May 2009) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-05-22 15:42:29 UTC (rev 1012) +++ trunk/pom.xml 2009-05-22 15:42:56 UTC (rev 1013) @@ -4,7 +4,7 @@ <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <packaging>jar</packaging> - <version>2.4.5</version> + <version>2.4.6-SNAPSHOT</version> <name>DbUnit Framework</name> <url>http://dbunit.sourceforge.net</url> <inceptionYear>2002</inceptionYear> @@ -23,9 +23,9 @@ <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> </properties> <scm> - <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</connection> - <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</developerConnection> - <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</url> + <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</connection> + <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</developerConnection> + <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</url> </scm> <issueManagement> <system>SourceForge</system> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-22 15:42:31
|
Revision: 1012 http://dbunit.svn.sourceforge.net/dbunit/?rev=1012&view=rev Author: rlogiacco Date: 2009-05-22 15:42:29 +0000 (Fri, 22 May 2009) Log Message: ----------- [maven-scm] copy for tag dbunit-2.4.5 Added Paths: ----------- tags/dbunit-2.4.5/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-22 15:41:32
|
Revision: 1011 http://dbunit.svn.sourceforge.net/dbunit/?rev=1011&view=rev Author: rlogiacco Date: 2009-05-22 15:41:29 +0000 (Fri, 22 May 2009) Log Message: ----------- [maven-release-plugin] prepare release dbunit-2.4.5 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-05-22 14:45:36 UTC (rev 1010) +++ trunk/pom.xml 2009-05-22 15:41:29 UTC (rev 1011) @@ -4,7 +4,7 @@ <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <packaging>jar</packaging> - <version>2.4.5-SNAPSHOT</version> + <version>2.4.5</version> <name>DbUnit Framework</name> <url>http://dbunit.sourceforge.net</url> <inceptionYear>2002</inceptionYear> @@ -23,9 +23,9 @@ <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> </properties> <scm> - <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</connection> - <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</developerConnection> - <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</url> + <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</connection> + <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</developerConnection> + <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</url> </scm> <issueManagement> <system>SourceForge</system> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-22 14:45:52
|
Revision: 1010 http://dbunit.svn.sourceforge.net/dbunit/?rev=1010&view=rev Author: rlogiacco Date: 2009-05-22 14:45:36 +0000 (Fri, 22 May 2009) Log Message: ----------- updated the maven-release-plugin to fix a problem with subversion 1.5+ Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-05-22 14:29:36 UTC (rev 1009) +++ trunk/pom.xml 2009-05-22 14:45:36 UTC (rev 1010) @@ -367,6 +367,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-9</version> <configuration> <goals>javadoc:javadoc site changes:announcement-generate assembly:assembly deploy</goals> </configuration> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-22 14:29:38
|
Revision: 1009 http://dbunit.svn.sourceforge.net/dbunit/?rev=1009&view=rev Author: rlogiacco Date: 2009-05-22 14:29:36 +0000 (Fri, 22 May 2009) Log Message: ----------- updated changes.xml to the upcoming release Modified Paths: -------------- trunk/src/changes/changes.xml Modified: trunk/src/changes/changes.xml =================================================================== --- trunk/src/changes/changes.xml 2009-05-21 02:59:55 UTC (rev 1008) +++ trunk/src/changes/changes.xml 2009-05-22 14:29:36 UTC (rev 1009) @@ -13,7 +13,7 @@ <release version="2.4.6-SNAPSHOT" date="TBD" description="(no description)"> </release> - <release version="2.4.5" date="May 15, 2009" description="Bugfixes and some few additions"> + <release version="2.4.5" date="May 22, 2009" description="Bugfixes and some few additions"> <action dev="gommma" type="add" issue="2633859" due-to="tjstavenger">Add Excel support to Export</action> <action dev="gommma" type="fix" issue="2658082" due-to="Bernard Schubach">MySQL - NoSuchTableException</action> <action dev="gommma" type="add" issue="2658136" due-to="ejain">Have DbUnitAssert use JUnit only if present</action> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fel...@us...> - 2009-05-21 02:59:56
|
Revision: 1008 http://dbunit.svn.sourceforge.net/dbunit/?rev=1008&view=rev Author: felipeal Date: 2009-05-21 02:59:55 +0000 (Thu, 21 May 2009) Log Message: ----------- updated team members so most actives are listed first Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-05-15 02:20:50 UTC (rev 1007) +++ trunk/pom.xml 2009-05-21 02:59:55 UTC (rev 1008) @@ -69,19 +69,28 @@ </mailingList> </mailingLists> - <!-- who the developers are for the project --> + <!-- + - Who are the developers for the project, in order of recent activity. + --> <developers> <!-- - put my name first, so my email is used by the announcements-email - plugin - --> + - Note: email of first developer is used by the announcements-email plugin + --> <developer> + <name>Matthias Gommeringer</name> + <id>gommma</id> + <email>go...@us...</email> + <roles> + <role>Java Developer (very active)</role> + </roles> + </developer> + <developer> <name>Roberto Lo Giacco</name> <id>rlogiacco</id> <email>rlo...@us...</email> <organization>SmartLab</organization> <roles> - <role>Java Developer</role> + <role>Java Developer (active)</role> </roles> </developer> <developer> @@ -91,34 +100,24 @@ <organization>GoldenGate Software</organization> <timezone>-8</timezone> <roles> - <role>Java Developer</role> + <role>Java Developer (mostly inactive :-)</role> </roles> </developer> <developer> - <name>Benjamin Cox</name> - <id>bdrum</id> - <roles> - <role>Java Developer</role> - <!-- <role>Original Ant Task Contributor</role> --> - </roles> - </developer> - <developer> <name>David Eric Pugh</name> <id>dep4b</id> <email>ep...@op...</email> <organization>OpenSource Connections</organization> <roles> - <role>Java Developer</role> + <role>Java Developer (inactive)</role> </roles> </developer> <developer> - <name>Federico Spinazzi</name> - <id>fspinazzi</id> - <email>f.s...@ma...</email> - <organization>Master House S.r.l</organization> + <name>Sebastien Le Callonnec</name> + <id>slecallonnec</id> + <email>sle...@us...</email> <roles> - <role>Java Developer</role> - <!-- <role>DB2 Contributor</role> --> + <role>Java Developer (inactive)</role> </roles> </developer> <developer> @@ -126,32 +125,34 @@ <id>mlaflamm</id> <organization>Oz Communication</organization> <roles> - <role>Project Founder</role> + <role>Project Founder (inactive)</role> <!-- <role>Java Developer</role> --> </roles> </developer> <developer> - <name>Timothy J. Ruppert</name> - <id>zieggy</id> + <name>Benjamin Cox</name> + <id>bdrum</id> <roles> - <role>Java Developer</role> + <role>Java Developer (inactive)</role> <!-- <role>Original Ant Task Contributor</role> --> </roles> </developer> <developer> - <name>Sebastien Le Callonnec</name> - <id>slecallonnec</id> - <email>sle...@us...</email> + <name>Federico Spinazzi</name> + <id>fspinazzi</id> + <email>f.s...@ma...</email> + <organization>Master House S.r.l</organization> <roles> - <role>Java Developer</role> + <role>Java Developer (inactive)</role> + <!-- <role>DB2 Contributor</role> --> </roles> </developer> <developer> - <name>Matthias Gommeringer</name> - <id>gommma</id> - <email>go...@us...</email> + <name>Timothy J. Ruppert</name> + <id>zieggy</id> <roles> - <role>Java Developer</role> + <role>Java Developer (inactive)</role> + <!-- <role>Original Ant Task Contributor</role> --> </roles> </developer> </developers> @@ -559,4 +560,4 @@ </profile> </profiles> -</project> \ No newline at end of file +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-15 03:16:08
|
Revision: 1006 http://dbunit.svn.sourceforge.net/dbunit/?rev=1006&view=rev Author: rlogiacco Date: 2009-05-15 02:14:04 +0000 (Fri, 15 May 2009) Log Message: ----------- [maven-release-plugin] prepare release dbunit-2.4.5 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2009-05-15 02:12:35 UTC (rev 1005) +++ trunk/pom.xml 2009-05-15 02:14:04 UTC (rev 1006) @@ -4,7 +4,7 @@ <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <packaging>jar</packaging> - <version>2.4.5-SNAPSHOT</version> + <version>2.4.5</version> <name>DbUnit Framework</name> <url>http://dbunit.sourceforge.net</url> <inceptionYear>2002</inceptionYear> @@ -23,9 +23,9 @@ <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> </properties> <scm> - <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</connection> - <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</developerConnection> - <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/trunk</url> + <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</connection> + <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</developerConnection> + <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</url> </scm> <issueManagement> <system>SourceForge</system> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-15 03:15:49
|
Revision: 1005 http://dbunit.svn.sourceforge.net/dbunit/?rev=1005&view=rev Author: rlogiacco Date: 2009-05-15 02:12:35 +0000 (Fri, 15 May 2009) Log Message: ----------- reverted failed release Removed Paths: ------------- tags/dbunit-2.4.5/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rlo...@us...> - 2009-05-15 03:15:21
|
Revision: 1001 http://dbunit.svn.sourceforge.net/dbunit/?rev=1001&view=rev Author: rlogiacco Date: 2009-05-15 02:02:52 +0000 (Fri, 15 May 2009) Log Message: ----------- [maven-release-plugin] copy for tag dbunit-2.4.5 Added Paths: ----------- tags/dbunit-2.4.5/ tags/dbunit-2.4.5/pom.xml Removed Paths: ------------- tags/dbunit-2.4.5/pom.xml Deleted: tags/dbunit-2.4.5/pom.xml =================================================================== --- trunk/pom.xml 2009-05-15 01:48:57 UTC (rev 998) +++ tags/dbunit-2.4.5/pom.xml 2009-05-15 02:02:52 UTC (rev 1001) @@ -1,562 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<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.dbunit</groupId> - <artifactId>dbunit</artifactId> - <packaging>jar</packaging> - <version>2.4.5</version> - <name>DbUnit Framework</name> - <url>http://dbunit.sourceforge.net</url> - <inceptionYear>2002</inceptionYear> - <description> - DbUnit is a JUnit extension (also usable from Ant) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage. - </description> - <licenses> - <license> - <name>GNU Lesser General Public License, Version 2.1</name> - <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> - <distribution>repo</distribution> - </license> - </licenses> - <properties> - <compileSource>1.4</compileSource> - <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> - </properties> - <scm> - <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</connection> - <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</developerConnection> - <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</url> - </scm> - <issueManagement> - <system>SourceForge</system> - <url>http://sourceforge.net/tracker/?group_id=47439</url> - </issueManagement> - <ciManagement> - <system>parabuild</system> - <url><![CDATA[http://parabuild.viewtier.com:8080/parabuild/index.htm?view=detailed&buildid=30]]></url> - <notifiers> - <notifier> - <type>mail</type> - <sendOnError>true</sendOnError> - <sendOnFailure>false</sendOnFailure> - <sendOnSuccess>false</sendOnSuccess> - <sendOnWarning>false</sendOnWarning> - <configuration> - <address>go...@us...</address> - </configuration> - </notifier> - </notifiers> - </ciManagement> - - <mailingLists> - <mailingList> - <name>DbUnit User List</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-user</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-user</unsubscribe> - <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-user</archive> - </mailingList> - <mailingList> - <name>DbUnit Developer List</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-developer</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-developer</unsubscribe> - <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-developer</archive> - </mailingList> - <mailingList> - <name>DbUnit SVN Commit List</name> - <subscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-commit</subscribe> - <unsubscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-commit</unsubscribe> - <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-commit</archive> - </mailingList> - </mailingLists> - - <!-- who the developers are for the project --> - <developers> - <!-- - put my name first, so my email is used by the announcements-email - plugin - --> - <developer> - <name>Roberto Lo Giacco</name> - <id>rlogiacco</id> - <email>rlo...@us...</email> - <organization>SmartLab</organization> - <roles> - <role>Java Developer</role> - </roles> - </developer> - <developer> - <name>Felipe Leme</name> - <id>felipeal</id> - <email>db...@fe...</email> - <organization>GoldenGate Software</organization> - <timezone>-8</timezone> - <roles> - <role>Java Developer</role> - </roles> - </developer> - <developer> - <name>Benjamin Cox</name> - <id>bdrum</id> - <roles> - <role>Java Developer</role> - <!-- <role>Original Ant Task Contributor</role> --> - </roles> - </developer> - <developer> - <name>David Eric Pugh</name> - <id>dep4b</id> - <email>ep...@op...</email> - <organization>OpenSource Connections</organization> - <roles> - <role>Java Developer</role> - </roles> - </developer> - <developer> - <name>Federico Spinazzi</name> - <id>fspinazzi</id> - <email>f.s...@ma...</email> - <organization>Master House S.r.l</organization> - <roles> - <role>Java Developer</role> - <!-- <role>DB2 Contributor</role> --> - </roles> - </developer> - <developer> - <name>Manuel Laflamme</name> - <id>mlaflamm</id> - <organization>Oz Communication</organization> - <roles> - <role>Project Founder</role> - <!-- <role>Java Developer</role> --> - </roles> - </developer> - <developer> - <name>Timothy J. Ruppert</name> - <id>zieggy</id> - <roles> - <role>Java Developer</role> - <!-- <role>Original Ant Task Contributor</role> --> - </roles> - </developer> - <developer> - <name>Sebastien Le Callonnec</name> - <id>slecallonnec</id> - <email>sle...@us...</email> - <roles> - <role>Java Developer</role> - </roles> - </developer> - <developer> - <name>Matthias Gommeringer</name> - <id>gommma</id> - <email>go...@us...</email> - <roles> - <role>Java Developer</role> - </roles> - </developer> - </developers> - - <contributors> - <contributor> - <name>Klas Axel</name> - <roles> - <role>HsqldbDataTypeFactory</role> - </roles> - </contributor> - <contributor> - <name>Erik Price</name> - <roles> - <role>DatabaseSequenceOperation</role> - </roles> - </contributor> - <contributor> - <name>Jeremy Stein</name> - <roles> - <role>InsertIndentityOperation</role> - </roles> - </contributor> - <contributor> - <name>Keven Kizer</name> - <roles> - <role>Early guinea pig</role> - </roles> - </contributor> - <contributor> - <name>Mike Bresnahan</name> - <roles> - <role>DbUnit evangelist</role> - </roles> - </contributor> - <contributor> - <name>Andres Almiray</name> - <email>aal...@us...</email> - <roles> - <role>IDatabaseTester creator</role> - </roles> - </contributor> - </contributors> - - - <dependencies> - - <!-- - TODO: check which dependencies could marked as optional. For - instance, ant is optional because it's only necessary for the - dbunit Ant tasks. - --> - - <!-- TODO: add exclusion for dependencies that include xerces/xalan --> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.2</version> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.5.6</version> - </dependency> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.2.1</version> - </dependency> - <dependency> - <groupId>ant</groupId> - <artifactId>ant</artifactId> - <version>1.5.4</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>org.apache.poi</groupId> - <artifactId>poi</artifactId> - <version>3.2-FINAL</version> - <optional>true</optional> - </dependency> - - <dependency> - <groupId>org.apache.ant</groupId> - <artifactId>ant-testutil</artifactId> - <version>1.7.0</version> - <optional>true</optional> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junit-addons</groupId> - <artifactId>junit-addons</artifactId> - <version>1.4</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>mockobjects</groupId> - <artifactId>mockobjects-core</artifactId> - <version>0.07</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>mockmaker</groupId> - <artifactId>mmmockobjects</artifactId> - <version>1.12.0</version> - <scope>test</scope> - </dependency> - <!-- TODO: check why follow dependency is necessary --> - <dependency> - <groupId>mockobjects</groupId> - <artifactId>mockobjects-jdk1.3</artifactId> - <version>0.07</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>hsqldb</groupId> - <artifactId>hsqldb</artifactId> - <version>1.8.0.1</version> - <scope>test</scope> - </dependency> - <dependency> - <!-- - Only needed when "profile.properties" is set to "derby" - environment - --> - <groupId>org.apache.derby</groupId> - <artifactId>derby</artifactId> - <version>10.4.1.3</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>gsbase</groupId> - <artifactId>gsbase</artifactId> - <version>2.0.1</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-nop</artifactId> - <version>1.5.6</version> - <scope>runtime</scope> - <optional>true</optional> - </dependency> - </dependencies> - - <build> - <defaultGoal>install</defaultGoal> - <sourceDirectory>src/java</sourceDirectory> - <testSourceDirectory>src/test</testSourceDirectory> - - <!-- - TODO: move to M2's expected path and separate java from test (once - SCM is migrated to SVN...) - --> - <resources> - <resource> - <directory>.</directory> - <includes> - <include>LICENSE.txt</include> - </includes> - </resource> - <resource> - <directory>src/java</directory> - <includes> - <include>**/dataset.dtd</include> - </includes> - </resource> - <resource> - <directory>src/csv</directory> - <includes> - <include>**/cvs-tests.properties</include> - </includes> - </resource> - - </resources> - <!-- - TODO: that are some resources on src that should be on test... - - <testResources> <testResource> </testResource> </testResources> - --> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <excludes> - <exclude>**/Abstract*.java</exclude> - </excludes> - <includes> - <include>**/*Test.java</include> - </includes> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>${compileSource}</source> - <target>${compileSource}</target> - <compilerVersion>${compileSource}</compilerVersion> - <!-- - TODO somehow we must ensure that the used rt.jar is really a - 1.4 and not higher, also for continuous integration - --> - <!--<executable>${JAVA_1_4_HOME}/bin/javac</executable>--> - <debug>true</debug> - <fork>true</fork> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-release-plugin</artifactId> - <configuration> - <goals>javadoc:javadoc site changes:announcement-generate assembly:assembly deploy</goals> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <configuration> - <includes> - <include>/LICENSE.txt</include> - <include>**</include> - </includes> - </configuration> - </plugin> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <configuration> - <descriptors> - <descriptor>assembly.xml</descriptor> - </descriptors> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>clean</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - </plugin> - <!-- - <plugin> <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> </plugin> - --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <configLocation>checkstyle.xml</configLocation> - <argLine>-Xmx512m -Xms128m</argLine> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <linkXref>true</linkXref> - <sourceEncoding>utf-8</sourceEncoding> - <minimumTokens>100</minimumTokens> - <targetJdk>${compileSource}</targetJdk> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>jdepend-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <destDir>apidocs</destDir> - <quiet>true</quiet> - <stylesheet>maven</stylesheet> - <tags> - <tag> - <name>TODO</name> - <placement>a</placement> - <head>To do:</head> - </tag> - </tags> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changes-plugin</artifactId> - <version>2.0</version> - <configuration> - <smtpHost>localhost</smtpHost> - <smtpPort implementation="java.lang.Integer">25</smtpPort> - <introduction>If you are reading this, the maintainer forgot to descrive what's the purpose of this release!!!</introduction> - <toAddresses> - <toAddress implementation="java.lang.String">dbu...@li...</toAddress> - <toAddress implementation="java.lang.String">dbu...@li...</toAddress> - </toAddresses> - <urlDownload>http://sourceforge.net/project/showfiles.php?group_id=47439</urlDownload> - <issueLinkTemplate><![CDATA[http://sourceforge.net/support/tracker.php?aid=%ISSUE%]]></issueLinkTemplate> - </configuration> - <reportSets> - <reportSet> - <reports> - <report>changes-report</report> - <report>license</report> - </reports> - </reportSet> - </reportSets> - </plugin> - </plugins> - </reporting> - - <distributionManagement> - <snapshotRepository> - <id>sourceforge</id> - <name>SourceForge Snapshots Repo</name> - <url>scp://shell.sourceforge.net/home/groups/d/db/dbunit/htdocs/repo/snapshots</url> - </snapshotRepository> - <repository> - <id>sourceforge</id> - <name>SourceForge Releases Repo</name> - <url>scp://shell.sourceforge.net/home/groups/d/db/dbunit/htdocs/repo/official</url> - </repository> - <site> - <id>sourceforge</id> - <url>scp://shell.sourceforge.net/home/groups/d/db/dbunit/htdocs</url> - </site> - </distributionManagement> - - <profiles> - <profile> - <id>official</id> - <dependencies> - <dependency> - <groupId>javax.sql</groupId> - <artifactId>jdbc-stdext</artifactId> - <version>2.0</version> - <optional>true</optional> - </dependency> - </dependencies> - <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>${compileSource}</source> - <target>${compileSource}</target> - <compilerVersion>${compileSource}</compilerVersion> - <executable>${JAVA_1_4_HOME}/bin/javac</executable> - <debug>true</debug> - <fork>true</fork> - </configuration> - </plugin> - </plugins> - </pluginManagement> - </build> - - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changes-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changelog-plugin</artifactId> - </plugin> - </plugins> - </reporting> - </profile> - </profiles> - -</project> Copied: tags/dbunit-2.4.5/pom.xml (from rev 1000, trunk/pom.xml) =================================================================== --- tags/dbunit-2.4.5/pom.xml (rev 0) +++ tags/dbunit-2.4.5/pom.xml 2009-05-15 02:02:52 UTC (rev 1001) @@ -0,0 +1,562 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<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.dbunit</groupId> + <artifactId>dbunit</artifactId> + <packaging>jar</packaging> + <version>2.4.5</version> + <name>DbUnit Framework</name> + <url>http://dbunit.sourceforge.net</url> + <inceptionYear>2002</inceptionYear> + <description> + DbUnit is a JUnit extension (also usable from Ant) targeted for database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage. + </description> + <licenses> + <license> + <name>GNU Lesser General Public License, Version 2.1</name> + <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + <properties> + <compileSource>1.4</compileSource> + <checkstyle.excludes>org/dbunit/util/concurrent/*.java</checkstyle.excludes> + </properties> + <scm> + <connection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</connection> + <developerConnection>scm:svn:https://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</developerConnection> + <url>http://dbunit.svn.sourceforge.net/svnroot/dbunit/tags/dbunit-2.4.5</url> + </scm> + <issueManagement> + <system>SourceForge</system> + <url>http://sourceforge.net/tracker/?group_id=47439</url> + </issueManagement> + <ciManagement> + <system>parabuild</system> + <url><![CDATA[http://parabuild.viewtier.com:8080/parabuild/index.htm?view=detailed&buildid=30]]></url> + <notifiers> + <notifier> + <type>mail</type> + <sendOnError>true</sendOnError> + <sendOnFailure>false</sendOnFailure> + <sendOnSuccess>false</sendOnSuccess> + <sendOnWarning>false</sendOnWarning> + <configuration> + <address>go...@us...</address> + </configuration> + </notifier> + </notifiers> + </ciManagement> + + <mailingLists> + <mailingList> + <name>DbUnit User List</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-user</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-user</unsubscribe> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-user</archive> + </mailingList> + <mailingList> + <name>DbUnit Developer List</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-developer</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-developer</unsubscribe> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-developer</archive> + </mailingList> + <mailingList> + <name>DbUnit SVN Commit List</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-commit</subscribe> + <unsubscribe>http://lists.sourceforge.net/lists/listinfo/dbunit-commit</unsubscribe> + <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=dbunit-commit</archive> + </mailingList> + </mailingLists> + + <!-- who the developers are for the project --> + <developers> + <!-- + put my name first, so my email is used by the announcements-email + plugin + --> + <developer> + <name>Roberto Lo Giacco</name> + <id>rlogiacco</id> + <email>rlo...@us...</email> + <organization>SmartLab</organization> + <roles> + <role>Java Developer</role> + </roles> + </developer> + <developer> + <name>Felipe Leme</name> + <id>felipeal</id> + <email>db...@fe...</email> + <organization>GoldenGate Software</organization> + <timezone>-8</timezone> + <roles> + <role>Java Developer</role> + </roles> + </developer> + <developer> + <name>Benjamin Cox</name> + <id>bdrum</id> + <roles> + <role>Java Developer</role> + <!-- <role>Original Ant Task Contributor</role> --> + </roles> + </developer> + <developer> + <name>David Eric Pugh</name> + <id>dep4b</id> + <email>ep...@op...</email> + <organization>OpenSource Connections</organization> + <roles> + <role>Java Developer</role> + </roles> + </developer> + <developer> + <name>Federico Spinazzi</name> + <id>fspinazzi</id> + <email>f.s...@ma...</email> + <organization>Master House S.r.l</organization> + <roles> + <role>Java Developer</role> + <!-- <role>DB2 Contributor</role> --> + </roles> + </developer> + <developer> + <name>Manuel Laflamme</name> + <id>mlaflamm</id> + <organization>Oz Communication</organization> + <roles> + <role>Project Founder</role> + <!-- <role>Java Developer</role> --> + </roles> + </developer> + <developer> + <name>Timothy J. Ruppert</name> + <id>zieggy</id> + <roles> + <role>Java Developer</role> + <!-- <role>Original Ant Task Contributor</role> --> + </roles> + </developer> + <developer> + <name>Sebastien Le Callonnec</name> + <id>slecallonnec</id> + <email>sle...@us...</email> + <roles> + <role>Java Developer</role> + </roles> + </developer> + <developer> + <name>Matthias Gommeringer</name> + <id>gommma</id> + <email>go...@us...</email> + <roles> + <role>Java Developer</role> + </roles> + </developer> + </developers> + + <contributors> + <contributor> + <name>Klas Axel</name> + <roles> + <role>HsqldbDataTypeFactory</role> + </roles> + </contributor> + <contributor> + <name>Erik Price</name> + <roles> + <role>DatabaseSequenceOperation</role> + </roles> + </contributor> + <contributor> + <name>Jeremy Stein</name> + <roles> + <role>InsertIndentityOperation</role> + </roles> + </contributor> + <contributor> + <name>Keven Kizer</name> + <roles> + <role>Early guinea pig</role> + </roles> + </contributor> + <contributor> + <name>Mike Bresnahan</name> + <roles> + <role>DbUnit evangelist</role> + </roles> + </contributor> + <contributor> + <name>Andres Almiray</name> + <email>aal...@us...</email> + <roles> + <role>IDatabaseTester creator</role> + </roles> + </contributor> + </contributors> + + + <dependencies> + + <!-- + TODO: check which dependencies could marked as optional. For + instance, ant is optional because it's only necessary for the + dbunit Ant tasks. + --> + + <!-- TODO: add exclusion for dependencies that include xerces/xalan --> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.2</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.5.6</version> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.2.1</version> + </dependency> + <dependency> + <groupId>ant</groupId> + <artifactId>ant</artifactId> + <version>1.5.4</version> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + <version>3.2-FINAL</version> + <optional>true</optional> + </dependency> + + <dependency> + <groupId>org.apache.ant</groupId> + <artifactId>ant-testutil</artifactId> + <version>1.7.0</version> + <optional>true</optional> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junit-addons</groupId> + <artifactId>junit-addons</artifactId> + <version>1.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>mockobjects</groupId> + <artifactId>mockobjects-core</artifactId> + <version>0.07</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>mockmaker</groupId> + <artifactId>mmmockobjects</artifactId> + <version>1.12.0</version> + <scope>test</scope> + </dependency> + <!-- TODO: check why follow dependency is necessary --> + <dependency> + <groupId>mockobjects</groupId> + <artifactId>mockobjects-jdk1.3</artifactId> + <version>0.07</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <version>1.8.0.1</version> + <scope>test</scope> + </dependency> + <dependency> + <!-- + Only needed when "profile.properties" is set to "derby" + environment + --> + <groupId>org.apache.derby</groupId> + <artifactId>derby</artifactId> + <version>10.4.1.3</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>gsbase</groupId> + <artifactId>gsbase</artifactId> + <version>2.0.1</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-nop</artifactId> + <version>1.5.6</version> + <scope>runtime</scope> + <optional>true</optional> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <sourceDirectory>src/java</sourceDirectory> + <testSourceDirectory>src/test</testSourceDirectory> + + <!-- + TODO: move to M2's expected path and separate java from test (once + SCM is migrated to SVN...) + --> + <resources> + <resource> + <directory>.</directory> + <includes> + <include>LICENSE.txt</include> + </includes> + </resource> + <resource> + <directory>src/java</directory> + <includes> + <include>**/dataset.dtd</include> + </includes> + </resource> + <resource> + <directory>src/csv</directory> + <includes> + <include>**/cvs-tests.properties</include> + </includes> + </resource> + + </resources> + <!-- + TODO: that are some resources on src that should be on test... + + <testResources> <testResource> </testResource> </testResources> + --> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/Abstract*.java</exclude> + </excludes> + <includes> + <include>**/*Test.java</include> + </includes> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>${compileSource}</source> + <target>${compileSource}</target> + <compilerVersion>${compileSource}</compilerVersion> + <!-- + TODO somehow we must ensure that the used rt.jar is really a + 1.4 and not higher, also for continuous integration + --> + <!--<executable>${JAVA_1_4_HOME}/bin/javac</executable>--> + <debug>true</debug> + <fork>true</fork> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <goals>javadoc:javadoc site changes:announcement-generate assembly:assembly deploy</goals> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <includes> + <include>/LICENSE.txt</include> + <include>**</include> + </includes> + </configuration> + </plugin> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>assembly.xml</descriptor> + </descriptors> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>clean</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + </plugin> + <!-- + <plugin> <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> </plugin> + --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <configLocation>checkstyle.xml</configLocation> + <argLine>-Xmx512m -Xms128m</argLine> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <linkXref>true</linkXref> + <sourceEncoding>utf-8</sourceEncoding> + <minimumTokens>100</minimumTokens> + <targetJdk>${compileSource}</targetJdk> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <destDir>apidocs</destDir> + <quiet>true</quiet> + <stylesheet>maven</stylesheet> + <tags> + <tag> + <name>TODO</name> + <placement>a</placement> + <head>To do:</head> + </tag> + </tags> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <version>2.0</version> + <configuration> + <smtpHost>localhost</smtpHost> + <smtpPort implementation="java.lang.Integer">25</smtpPort> + <introduction>If you are reading this, the maintainer forgot to descrive what's the purpose of this release!!!</introduction> + <toAddresses> + <toAddress implementation="java.lang.String">dbu...@li...</toAddress> + <toAddress implementation="java.lang.String">dbu...@li...</toAddress> + </toAddresses> + <urlDownload>http://sourceforge.net/project/showfiles.php?group_id=47439</urlDownload> + <issueLinkTemplate><![CDATA[http://sourceforge.net/support/tracker.php?aid=%ISSUE%]]></issueLinkTemplate> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>changes-report</report> + <report>license</report> + </reports> + </reportSet> + </reportSets> + </plugin> + </plugins> + </reporting> + + <distributionManagement> + <snapshotRepository> + <id>sourceforge</id> + <name>SourceForge Snapshots Repo</name> + <url>scp://shell.sourceforge.net/home/groups/d/db/dbunit/htdocs/repo/snapshots</url> + </snapshotRepository> + <repository> + <id>sourceforge</id> + <name>SourceForge Releases Repo</name> + <url>scp://shell.sourceforge.net/home/groups/d/db/dbunit/htdocs/repo/official</url> + </repository> + <site> + <id>sourceforge</id> + <url>scp://shell.sourceforge.net/home/groups/d/db/dbunit/htdocs</url> + </site> + </distributionManagement> + + <profiles> + <profile> + <id>official</id> + <dependencies> + <dependency> + <groupId>javax.sql</groupId> + <artifactId>jdbc-stdext</artifactId> + <version>2.0</version> + <optional>true</optional> + </dependency> + </dependencies> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>${compileSource}</source> + <target>${compileSource}</target> + <compilerVersion>${compileSource}</compilerVersion> + <executable>${JAVA_1_4_HOME}/bin/javac</executable> + <debug>true</debug> + <fork>true</fork> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changelog-plugin</artifactId> + </plugin> + </plugins> + </reporting> + </profile> + </profiles> + +</project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |