Hi,

I'm trying to use the assembly plugin to create a directory in my
target Dir called debug. In this I'm going to put everything i need in
order to run the project in debug mode via my ide.

Currently I have this assembly descriptor

<assembly>
 <id>debug</id>
 <formats>
   <format>dir</format>
 </formats>
 <fileSets>
   <fileSet>
     <includes>
       <include>README*</include>
       <include>LICENSE*</include>
       <include>NOTICE*</include>
     </includes>
   </fileSet>
   <fileSet>
     <directory>target</directory>
     <outputDirectory>libs</outputDirectory>
     <includes>
       <include>*.jar</include>
     </includes>
   </fileSet>
 </fileSets>
</assembly>

I think I understand how to include files etc, but i cant see how i
can tell it to create a directory called 'debug'. I always end up with
a target/artifactname-version-debug.dir/artifactname-version.
What I really want is target/debug. Is this even possible?

Ben

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

Reply via email to