I am having repeated problems packaging and installing a maven2 project that is trying to use the maven-dependency-plugin, despite the fact that I have this plugin installed in both my local repository and my maven-proxy, and I can see it just fine online. Once in a great while, it will sporadically succeed, but usually fails, with the following output:

INFO] Internal error in the plugin manager executing goal 'org.apache.maven.plu gins:maven-dependency-plugin:2.0-alpha-4:copy-dependencies': Unable to find the mojo 'org.apache.maven.plugins:maven-dependency-plugin:2.0-alpha-4:copy-dependen
cies' in the plugin 'org.apache.maven.plugins:maven-dependency-plugin'
org/codehaus/plexus/archiver/ArchiverException

Does anyone have any idea why this would be? Here's is the code in my pom.xml that references it:

           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-dependency-plugin</artifactId>
               <executions>
                   <execution>
                       <id>copy-flex-resources</id>
                       <phase>process-classes</phase>
                       <goals>
                           <goal>copy-dependencies</goal>
                       </goals>
                       <configuration>
                           <outputDirectory>
                               ${project.build.directory}/flex-resources
                           </outputDirectory>
                           <includeTypes>swf,swc</includeTypes>
                           <stripVersion>true</stripVersion>
                       </configuration>
                   </execution>
               </executions>
           </plugin>

Thanks in advance for your help.

Cheers,

Brad


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

Reply via email to