Hi!
I want to put all dependency JARs with scope 'runtime' (and 'compile')
into one directory: 'lib/', and all deps with scope 'test' (e.g. junit)
in another directory: 'tst/lib/'.
I currently approximate this with the following entries in my descriptor:
<dependencySets>
<!-- main -->
<dependencySet>
<outputDirectory>lib</outputDirectory>
<scope>runtime</scope>
</dependencySet>
<!-- test -->
<dependencySet>
<outputDirectory>tst/lib</outputDirectory>
<scope>test</scope>
</dependencySet>
</dependencySets>
But this also puts the runtime deps into 'tst/lib'. How can I achieve a
strict separation between the two scopes?
Bye,
Michael
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]