On Tue, 2003-12-02 at 16:44, Vikas Phonsa wrote:
> But tell me one thing, if I just change the following properties, wouldn't
> it pick schema from the folder we want and place generated stuff in there, I
> tried but somehow is not working right :
Hmm. That, I don't know; it's a question better suited to a Torque
mailing list. I will add this, though: since Torque expects its
configuration in properties, and properties can be set only once per
invocation of Maven, you can't run Torque twice per invocation with
different properties each time. As a result, I have goals like this in
maven.xml:
<goal name="install">
<attainGoal name="clean:clean" />
<ant:exec executable="/usr/local/maven/bin/maven">
<arg value="generate-hsqldb-ddl" />
</ant:exec>
<ant:exec executable="/usr/local/maven/bin/maven">
<arg value="generate-oracle-ddl" />
</ant:exec>
<ant:exec executable="/usr/local/maven/bin/maven">
<arg value="generate-postgresql-ddl" />
</ant:exec>
<attainGoal name="jar:install" />
</goal>
--
Craig S. Cottingham
[EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]