|
Igor Fedorenko made changes - 12/Nov/08 04:27 PM
Igor Fedorenko made changes - 13/Nov/08 12:15 PM
Igor Fedorenko made changes - 18/Nov/08 09:14 AM
I was having the same problem as mentioned on the MNGECLIPSE-1027 and saw the recomendation to update the maven-dependency-plugin to version 2.1. I updated the plugin but still have the same problem. Any ideas? I have the same problem too, and the only solution I´ve found was to simply disable workspace resolution. I know that is terrible and with this approach I have to install locally all the time the other dependent projects
Felipe desiderati made changes - 19/May/09 06:55 PM
Is it possible to have this patch applied if it works ? Thanks. My current workaround for this issue is to use the antrun plug-in. For example, <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <!-- copy just built artifact to some lib dir --> <id>copy-to-lib</id> <goals> <goal>run</goal> </goals> <phase>package</phase> <configuration> <tasks> <copy file="${project.build.directory}/${project.build.finalName}.${project.packaging}" tofile="${some.lib.dir}/${project.artifactId}.${project.packaging}" /> </tasks> </configuration> </execution> </executions> </plugin> This allows "Resolve dependencies from Workspace projects" to work. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
updated path that fixes same exception in unpack mojo and also includes two unit tests.