Top "Maven-dependency-plugin" questions

The dependency plugin provides the capability to manipulate artifacts.

How to get access to Maven's dependency hierarchy within a plugin

In my plugin I need to process the dependency hierarchy and get information (groupId, artifactId, version etc) about each dependency …

maven maven-plugin maven-dependency-plugin aether
Filter dependencies copied by Maven's copy-dependency?

I need to essentially accomplish the following: Build my library into a JAR. (Easy, already done.) Copy my library's dependencies …

maven maven-dependency-plugin
What does purge-local-repository actually purge?

I am running the following command from within a maven project directory: mvn dependency:purge-local-repository What is the expected behavior? …

maven plugins maven-dependency-plugin purge
Suppress Maven Dependency Plugin's "Unused declared dependencies found" warnings

The maven-dependency-plugin identifies what it believes to be unused dependencies when you compile by producing warnings at compile time. [WARNING] …

java maven maven-3 pom.xml maven-dependency-plugin
maven-dependency-plugin:unpack Error

I'm trying to extract some .exe files from a dependency jar file and put them under ${project.build.directory}/classes/. …

maven-3 maven-dependency-plugin
Maven - Multiple artifact versions in dependency management

Is there a valid use case for having two different versions of the same artifact in the dependency management section …

maven maven-3 maven-dependency-plugin
How To Add Maven Dependency (Android Studio)

I have this code below.. <dependency> <groupId>me.gujun.android.taggroup</groupId> <artifactId&…

xml maven android-studio maven-dependency-plugin maven-dependency
maven-dependency-plugin target/classes - Access is denied

I have a multi module project with a parent project A, and two childs project B and C. Project B …

maven m2eclipse maven-dependency-plugin
How can I download a ZIP file with the Maven dependency plugin?

I'm trying to download a couple of dependencies from the command line using dependency:copy -Dartifact=... However, one artifact looks …

maven maven-dependency-plugin
Declare Maven dependency as test runtime only

What is the best way to declare a Maven dependency as only being used for the test runtime (but not …

java maven maven-3 maven-dependency-plugin