Hi,
I'm trying to use the maven-assembly-plugin from within Netbeans 5.5
(with Mavenide installed), but when executing the goal
assembly:assembly,
I get the following message when using the predefined descriptor
jar-with-dependencies:
Embedded error: C:\Programfiler\netbeans-5.5\target\classes isn't a
directory.
but my project is not placed under the C:\Programfiler\netbeans-5.5
-folder.
I've also tried making my own descriptor, but it seems like Mavenide
cannot figure out the root of the project. I also tried including the
${project.build.outputDirectory} in my descriptor-file like this:
<assembly>
...
<fileSets>
<fileSet>
<directory>${project.build.outputDirectory}/target/classes</directory>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
....
</assembly>
but now I get:
Embedded error:
C:\Programfiler\netbeans-5.5\${project.build.outputDirectory}\target\cla
sses isn't a directory.
Any ideas anyone ?
Regards
Arne