You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by tv...@apache.org on 2008/02/18 17:46:30 UTC

svn commit: r628807 - in /db/torque: common/trunk/ generator/trunk/ generator/trunk/src/conf/ generator/trunk/xdocs/ maven-plugin/trunk/ maven2-plugin/trunk/ runtime/trunk/ site/trunk/xdocs/ templates/trunk/ test/trunk/test-project/ tutorial/trunk/xdoc...

Author: tv
Date: Mon Feb 18 08:46:27 2008
New Revision: 628807

URL: http://svn.apache.org/viewvc?rev=628807&view=rev
Log:
Version 3.3 all over the place

Modified:
    db/torque/common/trunk/pom.xml
    db/torque/common/trunk/project.xml
    db/torque/generator/trunk/pom.xml
    db/torque/generator/trunk/project.properties
    db/torque/generator/trunk/src/conf/build-torque.xml
    db/torque/generator/trunk/xdocs/custom-templates.xml
    db/torque/maven-plugin/trunk/project.xml
    db/torque/maven2-plugin/trunk/pom.xml
    db/torque/runtime/trunk/pom.xml
    db/torque/site/trunk/xdocs/changes.xml
    db/torque/site/trunk/xdocs/download.xml
    db/torque/site/trunk/xdocs/index.xml
    db/torque/templates/trunk/pom.xml
    db/torque/test/trunk/test-project/pom.xml
    db/torque/tutorial/trunk/xdocs/step1.xml
    db/torque/tutorial/trunk/xdocs/step4.xml
    db/torque/tutorial/trunk/xdocs/step6.xml
    db/torque/village/trunk/pom.xml

Modified: db/torque/common/trunk/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/common/trunk/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/common/trunk/pom.xml (original)
+++ db/torque/common/trunk/pom.xml Mon Feb 18 08:46:27 2008
@@ -28,7 +28,7 @@
   <artifactId>torque</artifactId>
   <packaging>pom</packaging>
   <name>Torque</name>
-  <version>3.3-RC3</version>
+  <version>3.3</version>
   <description>Common project descriptor for the Torque project</description>
   <url>http://db.apache.org/torque</url>
 

Modified: db/torque/common/trunk/project.xml
URL: http://svn.apache.org/viewvc/db/torque/common/trunk/project.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/common/trunk/project.xml (original)
+++ db/torque/common/trunk/project.xml Mon Feb 18 08:46:27 2008
@@ -22,7 +22,7 @@
   <pomVersion>3</pomVersion>
   <groupId>torque</groupId>
   <name>Torque</name>
-  <currentVersion>3.3-RC3</currentVersion>
+  <currentVersion>3.3</currentVersion>
   <organization>
     <name>Apache Software Foundation</name>
     <url>http://db.apache.org/</url>

Modified: db/torque/generator/trunk/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/generator/trunk/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/generator/trunk/pom.xml (original)
+++ db/torque/generator/trunk/pom.xml Mon Feb 18 08:46:27 2008
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.torque</groupId>
     <artifactId>torque</artifactId>
-    <version>3.3-RC3</version>
+    <version>3.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
@@ -65,15 +65,15 @@
       <type>jar</type>
     </dependency>
     <dependency>
+      <groupId>org.apache.velocity</groupId>
       <artifactId>velocity</artifactId>
       <type>jar</type>
-      <groupId>velocity</groupId>
       <version>1.5</version>
     </dependency>
     <dependency>
+      <groupId>org.apache.texen</groupId>
       <artifactId>texen</artifactId>
       <type>jar</type>
-      <groupId>velocity</groupId>
       <version>1.0</version>
     </dependency>
     <dependency>

Modified: db/torque/generator/trunk/project.properties
URL: http://svn.apache.org/viewvc/db/torque/generator/trunk/project.properties?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/generator/trunk/project.properties (original)
+++ db/torque/generator/trunk/project.properties Mon Feb 18 08:46:27 2008
@@ -32,3 +32,11 @@
 maven.xdoc.includeProjectDocumentation = no
 
 maven.linkcheck.exclude=http://svn.apache.org,..
+
+#
+# Compilation options, the generator needs JDK 1.4
+maven.compile.source = 1.4
+maven.compile.target = 1.4
+maven.compile.debug = on
+maven.compile.optimize = off
+maven.compile.deprecation = off

Modified: db/torque/generator/trunk/src/conf/build-torque.xml
URL: http://svn.apache.org/viewvc/db/torque/generator/trunk/src/conf/build-torque.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/generator/trunk/src/conf/build-torque.xml (original)
+++ db/torque/generator/trunk/src/conf/build-torque.xml Mon Feb 18 08:46:27 2008
@@ -41,8 +41,8 @@
   <property file="${torque.contextProperties}"/>
   <property name="lib.dir" value="lib"/>
   <property name="torque.lib.dir" value="${lib.dir}"/>
-  <property name="torque.jar" value="torque-gen-3.3-RC3.jar"/>
-  <property name="village.jar" value="village-3.3-RC3.jar"/>
+  <property name="torque.jar" value="torque-gen-3.3.jar"/>
+  <property name="village.jar" value="village-3.3.jar"/>
 
   <!--
     Build the classpath used by all torque ant tasks.

Modified: db/torque/generator/trunk/xdocs/custom-templates.xml
URL: http://svn.apache.org/viewvc/db/torque/generator/trunk/xdocs/custom-templates.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/generator/trunk/xdocs/custom-templates.xml (original)
+++ db/torque/generator/trunk/xdocs/custom-templates.xml Mon Feb 18 08:46:27 2008
@@ -229,7 +229,7 @@
       <tr>
       <td>Date:</td><td>9 Aug 2006</td>
       </tr>
-      <tr><td>Torque-Version:</td><td>3.3-RC3</td>
+      <tr><td>Torque-Version:</td><td>3.3</td>
       </tr>
       <tr>
       <td>Goal/Target Effected:</td><td>datadtd</td>

Modified: db/torque/maven-plugin/trunk/project.xml
URL: http://svn.apache.org/viewvc/db/torque/maven-plugin/trunk/project.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/maven-plugin/trunk/project.xml (original)
+++ db/torque/maven-plugin/trunk/project.xml Mon Feb 18 08:46:27 2008
@@ -88,14 +88,14 @@
     <dependency>
       <groupId>torque</groupId>
       <artifactId>torque-gen</artifactId>
-      <version>3.3-RC3</version>
+      <version>3.3</version>
       <url>http://db.apache.org/torque/generator/</url>
     </dependency>
 
     <dependency>
       <groupId>torque</groupId>
       <artifactId>torque-gen-templates</artifactId>
-      <version>3.3-RC3</version>
+      <version>3.3</version>
       <url>http://db.apache.org/torque/templates/</url>
     </dependency>
 
@@ -116,7 +116,7 @@
     <dependency>
       <groupId>torque</groupId>
       <artifactId>village</artifactId>
-      <version>3.3-RC3</version>
+      <version>3.3</version>
       <url>http://db.apache.org/torque/village/</url>
     </dependency>
 

Modified: db/torque/maven2-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/maven2-plugin/trunk/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/maven2-plugin/trunk/pom.xml (original)
+++ db/torque/maven2-plugin/trunk/pom.xml Mon Feb 18 08:46:27 2008
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.torque</groupId>
     <artifactId>torque</artifactId>
-    <version>3.3-RC3</version>
+    <version>3.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

Modified: db/torque/runtime/trunk/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/runtime/trunk/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/runtime/trunk/pom.xml (original)
+++ db/torque/runtime/trunk/pom.xml Mon Feb 18 08:46:27 2008
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.torque</groupId>
     <artifactId>torque</artifactId>
-    <version>3.3-RC3</version>
+    <version>3.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

Modified: db/torque/site/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/db/torque/site/trunk/xdocs/changes.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/site/trunk/xdocs/changes.xml (original)
+++ db/torque/site/trunk/xdocs/changes.xml Mon Feb 18 08:46:27 2008
@@ -39,7 +39,7 @@
       also does not work correctly in the generator. Use the goal 
       id-table-init-sql to create sql for id tables instead.
     </action>
-    <action type="change" dev="tfischer">
+    <action type="update" dev="tfischer">
       maven2 plugin: changed the default value of the property schemaExcludes
       in the sql goal from "id-table-schema.xml" to "". So the default
       property settings also work if the idMethod is idbroker.
@@ -57,19 +57,19 @@
     <action type="add" dev="tfischer">
       Maven 2 plugin: Added the attribute delimiterType for the sqlExec goal.
     </action>
-    <action type="change" dev="tfischer">
+    <action type="update" dev="tfischer">
       Maven 2 plugin: changed the default value of the parameter
       &quot;suffix&quot; in the id-table-init-sql goal
       to &quot;-idtable-init&quot; (was: &quot;&quot;).
       This allows for automatic execution of the id-table-init-sql files in the
       sqlExec goal with default settings.
     </action>
-    <action type="change" dev="tfischer" issue="TORQUE-105" due-to="Sylvain Benoist">
+    <action type="update" dev="tfischer" issue="TORQUE-105" due-to="Sylvain Benoist">
       Sybase: Columns where the attribute &quot;required&quot; 
       is not set or set to false are now created explicitly
       with suffix &quot;NULL&quot;. 
     </action>
-    <action type="change" dev="tfischer">
+    <action type="update" dev="tfischer">
       Changed Type Mappings for Sybase:
       <ul>
         <li>
@@ -86,20 +86,20 @@
         </li>
       </ul>
     </action>
-    <action type="change" dev="tfischer">
+    <action type="update" dev="tfischer">
       Criterions with an integer value will now be set using
       PreparedStatemet#setInt() when doing a PsSelect.
     </action>
-    <action type="change" dev="tv">
+    <action type="update" dev="tv">
       Integrated Village into Torque. Thanks to Henning, Jean, Jon and Scott for
       the paperwork.
     </action>
-    <action type="change" dev="gmonroe" issue="TORQUE-86" due-to="Will Glass-Husain">
+    <action type="update" dev="gmonroe" issue="TORQUE-86" due-to="Will Glass-Husain">
       The SQL statements generated for MS SQL by the torque:datasql target 
       will now be wrapped in SET IDENTITY_INSERT...ON /OFF statements if
       the idMethod is native and autogenerate is set on one or more fields.
     </action>
-    <action type="change" dev="tfischer" issue="TORQUE-69">
+    <action type="update" dev="tfischer" issue="TORQUE-69">
       An exception is now thrown on an attempt to update a modified object
       without a primary key. The previous behaviour was to fail silently.
     </action>
@@ -110,12 +110,12 @@
       Remove 'COMMENT ON...' output from generated SQL for Sybase 
       as these commands do not exist in Sybase's sql.
     </action>
-    <action type="change" dev="tfischer" issue="TORQUE-91">
+    <action type="update" dev="tfischer" issue="TORQUE-91">
       Deprecated the attribute size in the element index-column in the dtd.
       The attribute is currently not used. It will be removed from the dtd
       in a future version of Torque.
     </action>
-    <action type="change" dev="tfischer" issue="TORQUE-71" due-to="Thoralf Rickert">
+    <action type="update" dev="tfischer" issue="TORQUE-71" due-to="Thoralf Rickert">
       Create nicely trimmed output in the generator.
     </action>
     <action type="add" dev="tfischer" issue="TORQUE-101" due-to="Marc Kannegiesser">
@@ -128,7 +128,7 @@
       Added copy(..) and add&lt;ForeignKey&gt;(..) methods with a connection 
       parameter.
     </action>
-    <action type="change" dev="tv">
+    <action type="update" dev="tv">
       Updated JCS dependency to version 1.3 and fixed related deprecation 
       issues.
     </action>
@@ -154,7 +154,7 @@
     <action type="add" dev="tfischer">
       Added a datadtd goal to the maven2 plugin.
     </action>
-    <action type="change" dev="tfischer">
+    <action type="update" dev="tfischer">
       changed the artifact id of some maven2 artifacts:
       <ul>
         <li>
@@ -169,7 +169,7 @@
       </ul>
       This change only affects maven2 users.
     </action>
-    <action type="change" dev="tfischer">
+    <action type="update" dev="tfischer">
       Changed the group id of the maven2 artifacts from
       org.apache.db.torque to org.apache.torque.
       This change only affects maven2 users.

Modified: db/torque/site/trunk/xdocs/download.xml
URL: http://svn.apache.org/viewvc/db/torque/site/trunk/xdocs/download.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/site/trunk/xdocs/download.xml (original)
+++ db/torque/site/trunk/xdocs/download.xml Mon Feb 18 08:46:27 2008
@@ -48,40 +48,40 @@
     </tr>
 
     <tr>
-      <td rowspan="3"><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/">Torque 3.3-RC3</a></td>
+      <td rowspan="3"><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/">Torque 3.3</a></td>
     </tr>
 
     <tr>
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-3.3-RC3.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3-RC3.tar.gz.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3-RC3.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-3.3.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3.tar.gz.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3.tar.gz.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-gen-3.3-RC3.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3-RC3.tar.gz.asc">Signature</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3-RC3.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-gen-3.3.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3.tar.gz.asc">Signature</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3.tar.gz.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/village-3.3-RC3.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3-RC3.tar.gz.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3-RC3.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/village-3.3.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3.tar.gz.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3.tar.gz.md5">MD5</a></td>
 
       <td rowspan="2">
-          <a href="http://www.apache.org/dyn/closer.cgi/java-repository/torque/plugins/maven-torque-plugin-3.3-RC3.jar">JAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/java-repository/torque/plugins/maven-torque-plugin-3.3-RC3.jar.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/java-repository/torque/plugins/maven-torque-plugin-3.3-RC3.jar.md5">MD5</a></td>
+          <a href="http://www.apache.org/dyn/closer.cgi/java-repository/torque/plugins/maven-torque-plugin-3.3.jar">JAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/java-repository/torque/plugins/maven-torque-plugin-3.3.jar.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/java-repository/torque/plugins/maven-torque-plugin-3.3.jar.md5">MD5</a></td>
     </tr>
 
     <tr>
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-3.3-RC3.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3-RC3.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3-RC3.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-3.3.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-3.3.zip.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-gen-3.3-RC3.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3-RC3.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3-RC3.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/torque-gen-3.3.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/torque-gen-3.3.zip.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/village-3.3-RC3.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3-RC3.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3-RC3.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/binaries/village-3.3.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/binaries/village-3.3.zip.md5">MD5</a></td>
     </tr>
 
     <tr>
@@ -134,41 +134,41 @@
     </tr>
 
     <tr>
-      <td rowspan="2"><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/">Torque 3.3-RC3</a></td>
+      <td rowspan="2"><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/">Torque 3.3</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-3.3-RC3-src.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-RC3-src.tar.gz.asc">Signature</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-RC3-src.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-3.3-src.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-src.tar.gz.asc">Signature</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-src.tar.gz.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-gen-3.3-RC3-src.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-RC3-src.tar.gz.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-RC3-src.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-gen-3.3-src.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-src.tar.gz.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-src.tar.gz.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/village-3.3-RC3-src.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-RC3-src.tar.gz.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-RC3-src.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/village-3.3-src.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-src.tar.gz.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-src.tar.gz.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/maven-torque-plugin-3.3-RC3-src.tar.gz">TAR</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-RC3-src.tar.gz.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-RC3-src.tar.gz.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/maven-torque-plugin-3.3-src.tar.gz">TAR</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-src.tar.gz.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-src.tar.gz.md5">MD5</a></td>
     </tr>
 
     <tr>
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-3.3-RC3-src.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-RC3-src.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-RC3-src.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-3.3-src.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-src.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-3.3-src.zip.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-gen-3.3-RC3-src.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-RC3-src.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-RC3-src.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/torque-gen-3.3-src.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-src.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/torque-gen-3.3-src.zip.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/village-3.3-RC3-src.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-RC3-src.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-RC3-src.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/village-3.3-src.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-src.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/village-3.3-src.zip.md5">MD5</a></td>
 
-      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/maven-torque-plugin-3.3-RC3-src.zip">ZIP</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-RC3-src.zip.asc">Sig.</a>&nbsp;
-          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-RC3-src.zip.md5">MD5</a></td>
+      <td><a href="http://www.apache.org/dyn/closer.cgi/db/torque/torque-3.3/source/maven-torque-plugin-3.3-src.zip">ZIP</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-src.zip.asc">Sig.</a>&nbsp;
+          <a href="http://www.apache.org/dist/db/torque/torque-3.3/source/maven-torque-plugin-3.3-src.zip.md5">MD5</a></td>
     </tr>
 
     <tr>

Modified: db/torque/site/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/db/torque/site/trunk/xdocs/index.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/site/trunk/xdocs/index.xml (original)
+++ db/torque/site/trunk/xdocs/index.xml Mon Feb 18 08:46:27 2008
@@ -116,11 +116,11 @@
     <p>
      <ul>
       <li>
-        Most recent <i>production</i> release of Torque is Torque 3.2
-      </li>
-      <li>
-        Most recent <i>development</i> release of Torque is Torque 3.3-RC3
+        Most recent <i>production</i> release of Torque is Torque 3.3
       </li>
+      <!-- li>
+        Most recent <i>development</i> release of Torque is Torque 3.4-dev
+      </li -->
      </ul>
     </p>
    </section>

Modified: db/torque/templates/trunk/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/templates/trunk/pom.xml (original)
+++ db/torque/templates/trunk/pom.xml Mon Feb 18 08:46:27 2008
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.torque</groupId>
     <artifactId>torque</artifactId>
-    <version>3.3-RC3</version>
+    <version>3.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

Modified: db/torque/test/trunk/test-project/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/test/trunk/test-project/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/test/trunk/test-project/pom.xml (original)
+++ db/torque/test/trunk/test-project/pom.xml Mon Feb 18 08:46:27 2008
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.torque</groupId>
     <artifactId>torque</artifactId>
-    <version>3.3-RC3</version>
+    <version>3.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>

Modified: db/torque/tutorial/trunk/xdocs/step1.xml
URL: http://svn.apache.org/viewvc/db/torque/tutorial/trunk/xdocs/step1.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/tutorial/trunk/xdocs/step1.xml (original)
+++ db/torque/tutorial/trunk/xdocs/step1.xml Mon Feb 18 08:46:27 2008
@@ -58,10 +58,10 @@
       in this tutorial.
     </li>
   </ul>
-  For this tutorial, we will be using the maven 1 plugin for Torque 3.3-RC3
+  For this tutorial, we will be using the maven 1 plugin for Torque 3.3
   (which will silently invoke the generator) to
   generate our object model classes and sql scripts. For working with the
-  generated classes, we will use the Torque 3.3-RC3 runtime for our
+  generated classes, we will use the Torque 3.3 runtime for our
   sample application.
 </p>
 
@@ -94,7 +94,7 @@
 </p>
 
 <source><![CDATA[
-maven plugin:download -DartifactId=maven-torque-plugin -DgroupId=torque -Dversion=3.3-RC3
+maven plugin:download -DartifactId=maven-torque-plugin -DgroupId=torque -Dversion=3.3
 ]]></source>
 
 <p>

Modified: db/torque/tutorial/trunk/xdocs/step4.xml
URL: http://svn.apache.org/viewvc/db/torque/tutorial/trunk/xdocs/step4.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/tutorial/trunk/xdocs/step4.xml (original)
+++ db/torque/tutorial/trunk/xdocs/step4.xml Mon Feb 18 08:46:27 2008
@@ -65,7 +65,7 @@
     <dependency>
       <artifactId>torque</artifactId>
       <groupId>torque</groupId>
-      <version>3.3-RC3</version>
+      <version>3.3</version>
     </dependency>
 
     <dependency>
@@ -141,7 +141,7 @@
     <dependency>
       <artifactId>village</artifactId>
       <groupId>torque</groupId>
-      <version>3.3-RC3</version>
+      <version>3.3</version>
     </dependency>
 
     <dependency>

Modified: db/torque/tutorial/trunk/xdocs/step6.xml
URL: http://svn.apache.org/viewvc/db/torque/tutorial/trunk/xdocs/step6.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/tutorial/trunk/xdocs/step6.xml (original)
+++ db/torque/tutorial/trunk/xdocs/step6.xml Mon Feb 18 08:46:27 2008
@@ -138,7 +138,7 @@
 </p>
 
 <source><![CDATA[
-java -cp classes:lib/avalon-framework-api-4.3.jar:lib/commons-beanutils-core-1.7.0.jar:lib/commons-collections-3.2.jar:lib/commons-configuration-1.4.jar:lib/commons-dbcp-1.2.2.jar:lib/commons-lang-2.3.jar:lib/commons-logging-1.1.jar:lib/commons-pool-1.3.jar:lib/jcs-1.3.jar:lib/mysql-connector-java-5.0.4.jar:lib/torque-3.3-RC3.jar:lib/village-3.3-RC3.jar com.kazmier.Bookstore
+java -cp classes:lib/avalon-framework-api-4.3.jar:lib/commons-beanutils-core-1.7.0.jar:lib/commons-collections-3.2.jar:lib/commons-configuration-1.4.jar:lib/commons-dbcp-1.2.2.jar:lib/commons-lang-2.3.jar:lib/commons-logging-1.1.jar:lib/commons-pool-1.3.jar:lib/jcs-1.3.jar:lib/mysql-connector-java-5.0.4.jar:lib/torque-3.3.jar:lib/village-3.3.jar com.kazmier.Bookstore
 ]]></source>
 
 <p>

Modified: db/torque/village/trunk/pom.xml
URL: http://svn.apache.org/viewvc/db/torque/village/trunk/pom.xml?rev=628807&r1=628806&r2=628807&view=diff
==============================================================================
--- db/torque/village/trunk/pom.xml (original)
+++ db/torque/village/trunk/pom.xml Mon Feb 18 08:46:27 2008
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.torque</groupId>
     <artifactId>torque</artifactId>
-    <version>3.3-RC3</version>
+    <version>3.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org