Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
6k views

Maven: how to export project with sources and dependencies

I have Maven project with dependencies in repo and stuff. I want to "export" its sources with all dependencies so that I can successfully open it in IDE without Maven running on a machine. When ...
4
votes
1answer
1k views

How can i resolve plugin problem in maven:' Unable to load mojo'

I have configured all the dependencies in my pom.xml through maven. when i give the command 'mvn install' I get the following error: [INFO] Internal error in the plugin manager executing goal ...
3
votes
2answers
51 views

getting information about maven dependencies

I wonder if it is possible to get information about all first level dependencies of my maven project. I need the following information: name, vendor, version, license type, reference URL, ...
3
votes
2answers
539 views

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 to a local folder, including the main project JAR, excluding ...
3
votes
3answers
316 views

Maven: download artifact and its deps to a specific directory

I must be missing something. I have searched and searched, and played and tinkered, and I still can't figure out how to do the following with Maven: I would like to download an artifact and all its ...
3
votes
2answers
229 views

How to tell maven-dependency-plugin that the artifact is used in the project?

This is a structure of my multi-module project: /root /api dependencies: slf4j /foo dependencies: slf4j-log4j12, log4j In other words, module api uses slf4j for logging purposes. It doesn't ...
3
votes
1answer
478 views

maven-dependency-plugin:copy tries to copy classes

I have parent pom and two module poms. In first module I want to copy second module (jar) to some folder. When I compiling project from first module pom - it works, but when I'm trying to compile from ...
2
votes
1answer
998 views

maven-dependency-plugin:unpack fails in Eclipse

I have a library of JavaScript in dependency globalmentor-core.jar, and I use maven-dependency in another project to transfer the JavaScript to a web directory: <plugin> ...
1
vote
1answer
24 views

How to download Java source for a Maven artifact and its dependencies from the CLI (not in project directory)?

Note: maven-dependency-plugin isn't suitable here for reasons specified below I'm deploying projects to Artifactory with sources attached. I'd like to be able to run a command to download and unpack ...
1
vote
2answers
53 views

How to ignore maven-dependency-plugin copy goal errors?

I am copying a resource into another folder before packaging using the maven-dependecy-plugins copy goal. <plugin> <groupId>org.apache.maven.plugins</groupId> ...
1
vote
1answer
30 views

Maven plugin artifact filter unimportant dependencies

I'm developing a Maven plugin and using the MavenProject object to access my dependencies with project.getDependencyArtifacts(), but this gives my all jar, even the test only jars. Is there some ...
1
vote
1answer
101 views

maven-dependency-plugin generates duplicate files in jar-with-dependencies.jar file

i am creating a standalone java application with maven, and i am including the dependencies in the jar file with maven-dependecy-plugin as follows: <plugin> ...
1
vote
0answers
52 views

maven-dependency-plugin unpacking files in binary mode

We are using maven Assembly and Dependency plugin to share resources across sub-modules, as described in this post, ...
1
vote
4answers
97 views

Dependency in Maven

I am really new to maven. I am bit confused about the dependency feature. I know that I can add dependency in the pom file like this <dependency> <groupId>org.slf4j</groupId> ...
1
vote
1answer
35 views

get aggregated information about maven dependencies

I have a deep hierarchy of maven projects. The top level projects are pure aggregation projects: they do not define dependencies themselves and just enumerate the child projects that have a lot of ...
1
vote
1answer
170 views

How do I strip subdirectories when using maven dependency plugin

There is a jar file with following structure: /-- |-dir1 |-file1 |-file2 |-file3 |-dir2 |-dir3 I set filter to take files only from dir1 <includes>dir1/*</includes> it ...
1
vote
1answer
346 views

How to Copy Bundle-classpath jars and their dependencies from maven repo to my local lib folder?

We are developing an Eclipse RCP application. We decided to use SVN for revision control system. We could export an eclipse product in the eclipse environment. Everything worked fine. But, Some of ...
1
vote
2answers
1k views

maven-dependency-plugin, copy-dependencies: exclude some artifact ids and their dependencies

I need to copy just one dependency and all its transitive dependencies to a specified folder. I know i can exclude artifacts with "excludeArtifactIds", but I also need to exclude the transitive ...
1
vote
2answers
202 views

need maven plugin configuration for building aggregate source jar

I've been fighting with this for a while and reading a lot of docs pages and other questions but still can't get it to work. In my ORMLite project, I have a ormlite-core project which has core ...
1
vote
2answers
483 views

mvn dependency:copy-dependencies removes the versions

I'm using "mvn dependency:copy-dependencies" to get all sources of the dependencies my project uses. I use it from command line, so it looks like this: mvn dependency:copy-dependencies ...
0
votes
1answer
18 views

Maven dependency plugin ignores destination

I'm using the maven-dependency-plugin from the command line to download a single file, but it always ends up in my local repository when, for my particular use case, I want it to be downloaded to the ...
0
votes
0answers
31 views

Maven dependency plugin and resolved/skipped files

when performing maven install, i am seeing the following logs and end of install before build success message: [INFO] [dependency:sources {execution: install}] [INFO] [INFO] The following files have ...
0
votes
2answers
68 views

Maven: unpack zip artifact to a SPECIFIC folder name

I am trying to download tomcat zip artifact and unpack it int a folder named tomcat. What i get is tomcat/apache-tomcat-7.0.19/ How can I get rid of the annoying intermediate directory? ...
0
votes
1answer
118 views

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 has a dependency on project C. I use the maven-dependency-plugin to copy the dependencies of B to a ...
0
votes
1answer
143 views

Local Maven Dependency project is referenced as a class folder instead of a jar

I'm using Eclipse Indigo with the m2e Plugin (Version 1.0.1). I have two separate workspace projects: A Maven Project that is basically a Vaadin widget and a second Maven project that is my main ...
0
votes
2answers
42 views

How can I strip the version from the output directory of maven-dependency-plugin:unpack?

I need to unpack an artifact, and I need to use it's unpacked location in several places (in multiple files). I don't want to have to update all the copies of that location every time I change ...
0
votes
3answers
129 views

Force re-download of release dependency using Maven

I'm working on a project with dependency X. X, in turn, depends on Y. I used to explicitly include Y in my project's pom. However, it was not used and to make things cleaner, I instead added it to ...
0
votes
0answers
58 views

Maven dependency:unpack-dependencies not considering dependencies inside profiles

I think that the dependency:unpack-dependencies goal is not taking into account dependencies that are configured inside profiles. I have a project with various optional dependencies. I'm using ...
0
votes
2answers
44 views

How to resolve the path to a jar in the dependency tree

I have a maven project which is running fine on my machine but not on another machine. Apparently in the other machine, mvn in unable to resolve the path to the jar, resulting in a ...
0
votes
2answers
94 views

Including maven built assemblies in another module

I have 2 maven modules. One module builds bunch of zip files using maven-assembly-plugin. Second module needs to include some of the zip files built by the first module in its package. What is the way ...
0
votes
1answer
328 views

How do I get maven-dependency-plugin from the command line?

I'm trying to execute this command on a server through SSH: mvn tomcat:run-war & But that plugin is not in the local repo: [INFO] Scanning for projects... [INFO] Searching repository for ...
0
votes
1answer
70 views

Where is dependency:properties gone?

Old versions of maven-dependency-plugin include a dependency:properties goal. New versions don't seem to include it. Has it been moved to another plugin, or is it simply deprecated with no chance to ...
0
votes
1answer
228 views

maven cannot find dependencies even in local repository

I have just moved to a new machine and installed a new maven (version 3) but it keeps complaining about project dependencies even though I can see them in the repository myself and all the repository ...
0
votes
1answer
151 views

mvn dependency plugin requires jars to be installed?

When running mvn dependency:copy-dependencies in a multi-module project it seems that mvn expects the jars to be already installed in .m2/repo. Maybe I'm missing something but I can't figure out the ...
0
votes
1answer
83 views

Sorting (topological) maven dependencies

We have a number of SNAPSHOT artifacts that we need to release more or less all at once. We were looking for a plug-in that would do the sort and then list the dependencies (dependency:list seems to ...
-1
votes
1answer
102 views

Using Maven with Eclipse

I just started working with maven and I am really new to this concept. I am using m2Eclipse plugin to work in maven. I use dependency to include the quartz library. <dependency> ...