>>>>> "Brian E. Fox" <[EMAIL PROTECTED]>:
> The copy mojo doesn't care about the scope because it will copy the
> artifacts listed in the artifactItems element. The scope is used by
> copy-dependencies to decide which ones from the project need to be
> copied since it starts from the entire dependency element. If you
> don't specify a scope, it will include all.
It's copy-dependencies that copies the bundles I'm trying to stop it
from copying (the conflicting OSGi framework).
Is there a place I can put scope on copy-dependencies? Is that the
excludeScope setting?
I tried putting this in, but it didn't help, either:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dependency-maven-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<excludeScope>install</excludeScope>
<outputDirectory>${user.home}/pde_target_platform/plugins</outputDirectory>
</configuration>
...
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]