You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by mc...@apache.org on 2005/07/14 20:47:34 UTC

svn commit: r219070 - /incubator/jdo/trunk/tck20/maven.xml

Author: mcaisse
Date: Thu Jul 14 11:47:33 2005
New Revision: 219070

URL: http://svn.apache.org/viewcvs?rev=219070&view=rev
Log:
Added maven help goal with help text for project.

Modified:
    incubator/jdo/trunk/tck20/maven.xml

Modified: incubator/jdo/trunk/tck20/maven.xml
URL: http://svn.apache.org/viewcvs/incubator/jdo/trunk/tck20/maven.xml?rev=219070&r1=219069&r2=219070&view=diff
==============================================================================
--- incubator/jdo/trunk/tck20/maven.xml (original)
+++ incubator/jdo/trunk/tck20/maven.xml Thu Jul 14 11:47:33 2005
@@ -30,6 +30,24 @@
         <attainGoal name="jar:install-snapshot"/>
     </goal>
 
+    <goal name="help">
+        <echo>Custom goals for this project are:</echo>
+        <echo>  installSchema - installs the database schema</echo>
+        <echo>  enhance.iut - enhances persistence capable classes with the implementation under test enhancer if enhancement is not up to date</echo>
+        <echo>  enhance.jdori - enhances persistence capable classes with the JDO Reference Implementation enhancer if enhancement is not up to date</echo>
+        <echo>  runtck.iut - runs the TCK on the implementation under test</echo>
+        <echo>  runtck.jdori - runs the TCK on the JDO Reference Implementation</echo>
+        <echo>Options for this project are:</echo>
+        <echo>  -Djdo.tck.cfglist=xxx - a list of configuration files</echo>
+        <echo>  -Djdo.tck.dblist=xxx - a list of databases</echo>
+        <echo>  -Djdo.tck.identitytypes=xxx - a list of identity types (applicationidentity, datastoreidentity)</echo>
+        <echo>Examples:</echo>
+        <echo>  maven -Djdo.tck.identitytypes=datastoreidentity installSchema</echo>
+        <echo>      Installs the database schema for datastore identity for all supported databases</echo>
+        <echo>  maven -Djdo.tck.cfglist="alltests.conf cfg1.conf" runtck.jdori</echo>
+        <echo>      Runs the test configurations specified in alltests.conf and cfg1.conf on the JDORI, using all supported identity types and databases. </echo>
+    </goal>
+
     <goal name="build">
         <attainGoal name="default"/>
         <attainGoal name="setProps"/>