Tagged Questions

0
votes
1answer
11 views

Getting Nexus to download dependencies from a repository with no .index file

I've just setup the latest version of Nexus for our company, and it's working great. We've added several 3rd party repositories, and one of them does not have an .index file prese …
1
vote
6answers
94 views

maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..?

I am newbie with maven. Other than its use for managing dependencies, I am finding little use for it. It was getting so hard to write up a pom.xml, that I generated a ant buil …
0
votes
2answers
29 views

Maven Assembly Problem

Hi, I have a maven multiple-module project, which is giving me headaches in the assembly:assembly phase. I have a module which has an assembly defined in it which works fine when …
0
votes
0answers
14 views

Generate plugin documentation

I write a plugin and was wondering how I get the site plugin to generate the documentation about the 'goals' available. The plugin it self is wokring fine, just the documentation d …
0
votes
3answers
30 views

maven snapshot repositories

My project depends on a 3rd party library that only has snapshots in its maven repository (no releases, which seems strange, but that's how it is). Every time I do a full build (an …
1
vote
1answer
30 views

Maven doesn’t recognize sibling modules when running mvn dependency:tree

I'm trying to set up a multi-module Maven project, and the inter-module dependencies are apparently not being set up correctly. I have: <modules> <module>commons&lt …
0
votes
2answers
55 views

Maven assembly Plugin with Maven Jar Plugin

Hi, I'm trying to use the maven assembly plugin for the first time. Essentially, I want to combine the output of the maven assembly plugin with that of the maven jar plugin into t …
0
votes
1answer
11 views

Continuous integration testing of project involving java server and Microsoft windows client build using Visual Studio C++

I am currently working on a project that has a java based server (on a Linux box) and Microsoft windows clients. I made a Maven project for the java server and I have Hudson setup …
1
vote
7answers
148 views

Is it fair to be held up to mockery for preferring to run “mvn clean install” as 2 commands ?

One of my team mates was held up for mockery by the team leads for preferring to run maven as: $ mvn clean $ mvn install The discussion by the team leaders was about efficiency …
0
votes
3answers
54 views

Build single module from multimodule pom

Is it possible to do? The environment: Multimodule pom consists of 3 modules: mm1, mm2, mm3. Module mm2 has mm1 as dependency. It is possible to build parent pom without any error …
1
vote
2answers
24 views

How to check licence of third-party jars

We distribute a number of third-party jars with our product. Is there any way I can analyse or perform a lookup on each jar in order to determine its license - e.g. CDDL v1.0, Ap …
1
vote
2answers
26 views

New Maven snapshots for already released artifacts

Is there a good reason to continue deploying newer snapshots, if there's already a released artifact of the same version? Concretely: There's already xyz-1.0 There's projects cont …
0
votes
0answers
12 views

Sourceforge org property for Ivy and Nexus

When trying to use the following settings: <dependency org="net.sourceforge.artifact" name="artifact" rev="2.0"/> and: <artifact pattern="http://localhost/nexus/conten …