2010/8/27 Thiébault Benoît <[email protected]>:
> <plugin>
> <groupId>org.codehaus.mojo</groupId>
> <artifactId>wagon-maven-plugin</artifactId>
> <version>1.0-beta-3</version>
> <executions>
> <execution>
> <id>copy-jar-to-felix</id>
> <phase>package</phase>
> <goals>
> <goal>copy</goal>
> </goals>
> <configuration>
>
> <source>file://target/assembly-module-2.0-SNAPSHOT-assembly</source>
Try using:
<fromDir>target/assembly-module-${project.version}-assembly</fromDir>
instead of <source>
And anyway refer to this page:
http://mojo.codehaus.org/wagon-maven-plugin/usage.html
Antonio