solo turn wrote:
is it possible to do that by:
* configuring maven to put generated files somewhere out of this directory, or
This really depends on how you're generating things. In my instance I'm using maven to call ant to call XJC and generate code from a schema. This ends up going into a src/generated/java source folder, but that's configured in the XJC task, and I would imagine its going to be the same for other code generation tools. You tell the tool where you want it and assume that the pom location is going to be the root for any relative path.
* configuring the source code control by excluding a directory resp a
fixed set of directories
?
Again, this is system dependent. We use CVS where I work and so excluding something from source control is a matter of adding it to the .cvsignore file, thus telling source control tools not to include the generated files when syncing with source control. This is going to be a part of the source control system though, not maven.

Brad



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to