I am trying to exclude certain artifacts from dependency:resolve, and I am using the following configuration:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>sources</goal> <goal>resolve</goal> </goals> </execution> </executions> <configuration> <excludeGroupIds>com.somedomain</excludeGroupIds> </configuration> </plugin> </plugins> </build> However, when i execute mvn dependency:resolve from the command line, it still insists on attempting to download archives with a group of com.somedomain. Am I making a mistake? -- jim -- View this message in context: http://www.nabble.com/Difficulty-configuring-dependency-plugin-tf4829454s177.html#a13817080 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]