Hi all, I am getting the above error when attempting to use the dependency plugin to unpack an assembly to a directory on my machine.
According to the FAQ here: http://maven.apache.org/plugins/maven-dependency-plugin/faq.html, you must configure your pom like here: http://maven.apache.org/plugins/maven-dependency-plugin/examples/copying-artifacts.html#Copying%20From%20the%20Command%20Line I have done so, yet the error remains. Can anyone see what I have done wrong? <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <artifactItems> <artifactItem> <groupId>alchemy</groupId> <artifactId>alchemy-native-assembly</artifactId> <version>${pom.version}</version> <classifier>${os-platform}-${os-arch}</classifier> <type>zip</type> <overWrite>true</overWrite> <outputDirectory>${env.NATIVE_HOME}/${pom.artifactId}-${pom.version}-${os-platform}-${os-arch}</outputDirectory> </artifactItem> </artifactItems> </configuration> </plugin> The error I get looks like this: [INFO] One or more required plugin parameters are invalid/missing for 'dependency:unpack' [0] inside the definition for plugin: 'dependency-maven-plugin'specify the following: <configuration> ... <artifactItems>VALUE</artifactItems> </configuration>. Regards, Graham -- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
