diff --git a/torque/.cvsignore b/torque/.cvsignore deleted file mode 100644 index e5e33942..00000000 --- a/torque/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -target -velocity.log -maven.log diff --git a/torque/plugin.jelly b/torque/plugin.jelly deleted file mode 100644 index 3705bb06..00000000 --- a/torque/plugin.jelly +++ /dev/null @@ -1,677 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Schema files have not changed since last generation. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Schema files have not changed since last generation. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - You have configured torque for manual database creation... - The create-db.sql script will NOT be executed. - - - - - - - - - - Executing the create-db.sql script ... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/torque/plugin.properties b/torque/plugin.properties deleted file mode 100644 index a9d3296c..00000000 --- a/torque/plugin.properties +++ /dev/null @@ -1,193 +0,0 @@ -# ------------------------------------------------------------------- -# P L U G I N P R O P E R T I E S -# ------------------------------------------------------------------- -# Torque plugin properties -# -# DO NOT EDIT THIS FILE - If you need to change the values found -# in this file, override them in your project.properties or -# build.properties file. -# ------------------------------------------------------------------- - -# ------------------------------------------------------------------- -# -# B A S I C P R O P E R T I E S -# -# ------------------------------------------------------------------- - -project = torque -# database = postgresql -targetPackage = org.apache.torque - -torque.project = ${project} -torque.database = ${database} -torque.targetPackage = ${targetPackage} -torque.runOnlyOnSchemaChange = true - -# ------------------------------------------------------------------- -# -# D I R E C T O R I E S -# -# ------------------------------------------------------------------- - -outputDirectory = ${maven.build.dest} -schemaDirectory = ${maven.src.dir}/schema -templatePath = ${maven.src.dir}/torqueTemplates - -torque.output.dir = ${outputDirectory} -torque.schema.dir = ${schemaDirectory} -torque.templatePath = ${templatePath} - -torque.doc.dir = ${torque.output.dir}/doc/schema -torque.java.dir = ${maven.src.dir}/java -torque.ojb.dir = ${maven.src.dir}/ojb -torque.sql.dir = ${torque.output.dir}/sql -torque.omzip.dir = ${torque.output.dir} - - -# ------------------------------------------------------------------- -# -# D A T A B A S E S E T T I N G S -# -# ------------------------------------------------------------------- - -# createDatabaseUrl = jdbc:postgresql://127.0.0.1:5432/template1 -# buildDatabaseUrl = jdbc:postgresql://127.0.0.1:5432/bookstore -# databaseUrl = jdbc:postgresql://127.0.0.1:5432/bookstore -# databaseDriver = org.postgresql.Driver -# databaseUser = jvanzyl -# databasePassword = -# databaseHost = 127.0.0.1 - -# databaseSchema = -# databaseName = -database.manual.creation = false -sameJavaName = false - -torque.database.createUrl = ${createDatabaseUrl} -torque.database.buildUrl = ${buildDatabaseUrl} -torque.database.url = ${databaseUrl} -torque.database.driver = ${databaseDriver} -torque.database.user = ${databaseUser} -torque.database.password = ${databasePassword} -torque.database.host = ${databaseHost} - -torque.database.schema = ${databaseSchema} -torque.database.name = ${databaseName} -torque.database.manualCreation = ${database.manual.creation} -torque.saveJavaName = ${sameJavaName} - - -# ------------------------------------------------------------------- -# -# T E M P L A T E V A R I A B L E S -# -# ------------------------------------------------------------------- - -addGetByNameMethod = true -addIntakeRetrievable = false -addSaveMethod = true -addTimeStamp = true -basePrefix = Base -complexObjectModel = true -useManagers = false -useClasspath = true - -torque.addGetByNameMethod = ${addGetByNameMethod} -torque.addIntakeRetrievable = ${addIntakeRetrievable} -torque.retrievableInterface = org.apache.turbine.om.Retrievable -torque.addSaveMethod = ${addSaveMethod} -torque.addTimeStamp = ${addTimeStamp} -torque.basePrefix = ${basePrefix} -torque.complexObjectModel = ${complexObjectModel} -torque.saveException = Exception -torque.useClasspath = ${useClasspath} -torque.useManagers = ${useManagers} - -torque.omzip.src.base = false -torque.omzip.src.extension = false -torque.omzip.bin.base = false -torque.omzip.bin.extension = false -torque.omzip.deleteFiles = false - -torque.generateDeprecated = true - -# ------------------------------------------------------------------- -# -# M I S C . S E T T I N G S -# -# ------------------------------------------------------------------- - -idTableXMLFile = -documentationFormat = html -initialID = 101 - -torque.idTableXMLFile = ${idTableXMLFile} -torque.doc.format = ${documentationFormat} -torque.doc.html.normalFont = font-family: Verdana; font-size: 10pt; -torque.doc.html.fkColor = afe295 -torque.initialID = ${initialID} - - -# ------------------------------------------------------------------- -# -# C O N T R O L T E M P L A T E S -# -# ------------------------------------------------------------------- - -SQLControlTemplate = sql/base/Control.vm -OMControlTemplate = om/Control.vm -idTableControlTemplate = sql/id-table/Control.vm -DataDTDControlTemplate = data/Control.vm -DataDumpControlTemplate = data/dump/Control.vm -DataSQLControlTemplate = sql/load/Control.vm -DocControlTemplate = doc/Control.vm - -torque.template.sql = ${SQLControlTemplate} -torque.template.om = ${OMControlTemplate} -torque.template.idTable = ${idTableControlTemplate} -torque.template.dataDtd = ${DataDTDControlTemplate} -torque.template.dataDump = ${DataDumpControlTemplate} -torque.template.dataSql = ${DataSQLControlTemplate} -torque.template.doc = ${DocControlTemplate} -torque.template.sqlDbInit = sql/db-init/Control.vm -torque.template.ojb = ojb/repository/Control.vm -torque.template.ojbModel = ojb/model/Control.vm - - -# ------------------------------------------------------------------- -# -# C O M P I L E S E T T I N G S -# -# ------------------------------------------------------------------- - -src.dir = ${torque.java.dir} -build.dest = bin/classes -debug = on -deprecation = off -optimize = off - -torque.compile.src.dir = ${src.dir} -torque.compile.build.dir = ${build.dest} -torque.compile.debug = ${debug} -torque.compile.deprecation = ${deprecation} -torque.compile.optimize = ${optimize} - - -# ------------------------------------------------------------------- -# -# I N C L U D E A N D E X C L U D E S E T T I N G S -# -# ------------------------------------------------------------------- - -torque.schema.sql.includes = *-schema.xml -torque.schema.sql.excludes = -torque.schema.doc.includes = *-schema.xml -torque.schema.doc.excludes = -torque.schema.createdb.includes = *-schema.xml -torque.schema.createdb.excludes = -torque.schema.initsql.includes = *-schema.xml -torque.schema.initsql.excludes = id-table-schema.xml -torque.schema.om.includes = *-schema.xml -torque.schema.om.excludes = id-table-schema.xml -torque.schema.ojb.includes = *-schema.xml -torque.schema.ojb.excludes = diff --git a/torque/project.properties b/torque/project.properties deleted file mode 100644 index 7911c0e5..00000000 --- a/torque/project.properties +++ /dev/null @@ -1,6 +0,0 @@ -# ------------------------------------------------------------------- -# P R O J E C T P R O P E R T I E S -# ------------------------------------------------------------------- -maven.xdoc.date=left -maven.xdoc.version=${pom.currentVersion} - diff --git a/torque/project.xml b/torque/project.xml deleted file mode 100644 index 5ef647fa..00000000 --- a/torque/project.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - ../project.xml - 3 - maven-torque-plugin - Maven Torque Plug-in - 3.3-SNAPSHOT - Maven Plugin for Torque - Maven Plugin for Torque - http://maven.apache.org/reference/plugins/torque/ - /www/maven.apache.org/reference/plugins/torque/ - - scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/torque/ - http://cvs.apache.org/viewcvs/maven-plugins/torque/ - - - - Torque User List - turbine-torque-user-subscribe@jakarta.apache.org - turbine-torque-user-unsubscribe@jakarta.apache.org - http://archives.apache.org/eyebrowse/SummarizeList?listName=turbine-torque-user@jakarta.apache.org - - - Torque Developer List - turbine-torque-dev-subscribe@jakarta.apache.org - turbine-torque-dev-unsubscribe@jakarta.apache.org - http://archives.apache.org/eyebrowse/SummarizeList?listName=turbine-torque-dev@jakarta.apache.org - - - - - Martin Poeschl - mpoeschl - mpoeschl@marmot.at - Tucana.at - - Java Developer - - - - Stephen Haberman - stephenh - stephenh@chase3000.com - - - Java Developer - - - - Quinton McCombs - quintonm - quintonm@bellsouth.net - NequalsOne - - Java Developer - - - - - - Markus M. May - mmay@javafreedom.org - - - - - commons-collections - 2.1 - - root - - - - commons-configuration - 20030311.152757 - - root - - - - commons-dbcp - 20030825.184428 - - root - - - - commons-lang - 1.0.1 - - root - - - - commons-logging - 1.0.3 - - root - - - - log4j - 1.2.8 - - root - - - - stratum - 1.0-b3 - - root - - - - torque - torque-gen - 3.1 - - root - - - - velocity - 1.3.1 - - root - - - - village - 2.0-dev-20030825 - - root - - - - xerces - 2.4.0 - - root - - - - xml-apis - xml-apis - 1.0.b2 - - root - - - - diff --git a/torque/xdocs/.cvsignore b/torque/xdocs/.cvsignore deleted file mode 100644 index cb6131bb..00000000 --- a/torque/xdocs/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -stylesheets diff --git a/torque/xdocs/changes.xml b/torque/xdocs/changes.xml deleted file mode 100644 index 7ff1aeab..00000000 --- a/torque/xdocs/changes.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - Changes - dIon Gillard - - - - - - update to torque-3.1 - - - - - Apply MAVEN-690 - - Fix prereqs of torque:om-zip goal. - - - Move to log4j 1.2.8 - - - Move to latest xerces - - - - - diff --git a/torque/xdocs/goals.xml b/torque/xdocs/goals.xml deleted file mode 100644 index bb10d3a8..00000000 --- a/torque/xdocs/goals.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - Maven Torque Plugin - Quinton McCombs - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GoalDescription
torque - Calls the torque:sql and torque:om goals -
torque:sql - Generates the SQL for your project -
torque:om - Generate the Peer-based object model from *-schema.xml files -
torque:datadtd - Generates the DATA DTD for your project -
torque:datadump - Dump data from database into xml file -
torque:datasql - Generates sql from data xml -
torque:create-db - Creates your database from you XML schema file. Warning: This - goal will drop all tables and recreate them. Any existing data - will be lost! -
torque:doc - Generates an HTML document from your XMl schema file. -
torque:jdbc - Creates an XML schema file by reverse engineering your database. -
torque:insert-sql - Inserts the generated sql -
torque:id-table-init-sql - Generates initialization sql for ID Broker -
torque:om-zip - Moves source om files to separate jar and out of - the source tree -
torque:sql2xml - Create an xml schema from an sql schema -
torque:ojb - Generates the repository and om for ojb (experimental) -
- -
- -
diff --git a/torque/xdocs/index.xml b/torque/xdocs/index.xml deleted file mode 100644 index 28183539..00000000 --- a/torque/xdocs/index.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Maven Torque Plugin - Stephen Haberman - Quinton McCombs - - - -
-

- This plugin provides easy intergration with - Torque for your project. This replaces using - the build-torque.xml ant script that previously provided the same - functionality. -

-

- By default, the templates used for code generation are found in - the torque-gen jar file. You can override this behavior by - setting the appropriate property. -

-

- For more information on the functionality provided by this plugin - see the Goals document. The various - properties used to configure the plugin are documented in the - Properties document. -

-
- -
diff --git a/torque/xdocs/navigation.xml b/torque/xdocs/navigation.xml deleted file mode 100644 index d2ca7077..00000000 --- a/torque/xdocs/navigation.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - Maven Torque Plugin - - - - - - - - - - - - diff --git a/torque/xdocs/properties.xml b/torque/xdocs/properties.xml deleted file mode 100644 index ba81ff5a..00000000 --- a/torque/xdocs/properties.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Maven Torque Plugin - Stephen Haberman - Quinton McCombs - - - -
-

- All of the settings used by the plugin are documented in the - Properties Reference - for Torque. -

-

- You can also view the default settings for each of the properties - by looking at plugin.properties in your - MAVEN_HOME/plugins/maven-torque-plugin directory. Do not modify - this file! All settings can be overridden in you project.properties - or build.properties file. -

-
- -
-