If I type the command:
mvn dependency:list
The docs suggest that I'll get a list of my project's dependencies. Instead though, I get this:
[INFO] Searching repository for plugin with prefix: 'dependency'.
[INFO] ...
|
I am trying to locate an evil plugin that includes a stoneage version of a certain jar file. How do I do that ?
|
I am trying to use the Maven assembly plugin to build a jar-with-dependencies, except those that have provided scope.
I have copied the jar-with-dependencies into an assembly.xml file and configured its use ... |
In my plugin I need to process the dependency hierarchy and get information (groupId, artifactId, version etc) about each dependency and if it was excluded. What is the best way to ... |
I have a Java project X has dependency (in pom file) on project Y.
I was modifying in Y and build X,Y with Maven tool then runing X (on JBoss) without problems.
When ... |
Possible Duplicate:
How to get access to Maven’s dependency hierarchy within a plugin.
The dependency:tree plugin:goal has an option 'verbose' which displays all conflicts & duplicates ... |
Are dependencies in Maven plugins supposed to resolve their transitive dependencies or do they have to be manually added to the plugin dependencies?
|
|
I am using maven-assembly plugin to create a jar of my application, including its dependencies as follows:
<assembly>
<id>macosx</id>
<formats>
...
|
Inovking maven2 goal "mvn dependency:list" on an artifact pom causes to download the whole dependent artifact packages. i think only those pom files are necessary for resolving dependencies. Aren't they?
... |
Trying to setup a project based repo local to that project and found the answer here, I'm trying to take that further and automate it via the maven-install-plugin. When i ... |
Does anyone know the best way to get a file handle to dependency declared in a POM? I realize that there is a dependency plugin, but we are trying to avoid ... |
I am trying to invoke maven-dependency-plugin programatically. i am using maven 3 version. the problem is that when i invoke it through pluginManager.executeMojo(session, execution), i receive the following error message:
[ERROR] **The ...
|
HI need some help or advice on converting or migrating an existing Ivy managed dependencies project to a Maven.
is there any good document or plugin? I am using eclipse.
Thanks
|
As the title suggest, I would like to find a maven checking that, for all dependencies, licenses are conforming to a common rule.
As an example, i would like to be able ... |
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 ... |
I created this profile for deploying artifacts on the server via SCP. I know Ant's scp task is optional, therefore I've added the dependencies.
<profiles>
...
|
I'm writing a Maven 2 plugin which must iterate over all project dependencies and recursively over all dependencies of these dependencies. Up to now I only managed to resolve the direct ... |
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 ... |
i have an multi-module maven project with the following structure:
- Root
- sub-module1
- sub-module2
- sub-module3
Now i created an maven plugin that should generate sources. I've added the plugin to the pom of sub-module2. This plugin configuration ... |
I have a Eclipse project where Maven manages the dependencies. I have also few jar files that are not Maven enable and I locate them at src/main/webapp/WEB-INF/lib. I have no issue ... |
I'm trying to use the maven-checkstyle plugin for a multi-module project here is my projec structure
|pom-root
| -- my-checkstyles
| |-- pom.xml
| |-- ...
|
After successful upgrade of sonar to 2.10, I run usual code analysis, got this issue:
http://old.nabble.com/Problem-with-Jenkins-integration-td31783437.html
with same conclusion, missing sonar-2.10.jar.
Tried to get it manually and install to repository, with no ... |
I have a Maven multi-module project. In one module, we create a ZIP with maven-assembly-plugin plugin. The configuration for this:
<baseDirectory>/</baseDirectory>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
...
|
I am writing a project, which can read Japanese characters from file and do an output of those Chars, and works just fine.
Problem is, when I change it to a maven ... |
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, description. ... |