0
votes
2answers
45 views
Eclipse won’t believe I have Maven 2.2.1
I have a project (built from an AppFuse template) that requires Maven 2.2.1. So I upgraded to this (from 2.1.0) and set my path and my M2_HOME and MAVEN_HOME env variables.
Then I ran mvn …
0
votes
3answers
38 views
What are solid NMaven or build server for .NET alternatives?
Maven had a long history and is well supported in the Java world. NMaven has received a less successful start and has never became as popular in the C#/.NET world as its larger cousin was in the Java …
0
votes
1answer
24 views
maven repo spring-security RC
hi! can't find it anywhere:
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
…
3
votes
6answers
110 views
Starting a new Maven project, what landmines to avoid?
I'm starting a new project. I intend to use Maven for the first time. From reading previous threads, the folks who like Maven have me convinced... but the folks who hate Maven seem to have stepped …
2
votes
4answers
38 views
Filtering Maven files into WEB-INF
I am trying to add some filtering to the application context file, which resides in the WEB-INF directory.
I have the file which is to be filtered (xmlgateway-context.xml) in the folder …
2
votes
1answer
32 views
Exclude dependency in a profile
I have a maven module which has some dependencies. In a certain profile, I want to exclude some of those dependencies (to be exact, all dependencies with a certain group id). They however need to be …
1
vote
3answers
23 views
Intellij Community can’t use http proxy for Maven
I have Intellij IDEA Community installed on a Linux box that needs to use an authenticated proxy to get to the Internet. I have a system-wide proxy on the box that works, and I have the proxy …
2
votes
1answer
43 views
Anonymize pom.xml on release
I've got artefacts which are built and released using Maven.
The artefact's original pom.xml contains the usual project information (artifactId, name, etc.) and the dependencies. That's fine. But the …
0
votes
2answers
35 views
How to determine at runtime the path to a Mavenized Eclipse project directory
Total Maven newbie, trying (along with the rest of a sizeable team) to convert a monstrous pile of legacy code from ant over to Maven. It's working reasonably well, but I'm having the following …
0
votes
1answer
38 views
Maven webstart plugin not finding dependencies
Hoping someone can help me with this strange one. I’m trying to run the webstart plugin but it doesn’t seem to be able to find the main class within the jar being produce. The pom is as simple as it …
0
votes
1answer
48 views
Is there a way to just copy resources when using a Maven archetype (no Velocity)?
We are using a Maven archetype to create an initial setup for projects using our framework, which relies heavily on Freemarker. As a consequence we need to copy a few Freemarker templates when the …
1
vote
7answers
134 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 build.xml from one of …
0
votes
2answers
296 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 the target/classes …
1
vote
0answers
54 views
Publish CruiseControl LATEST build artifacts to a static URL
I have a Java multi-module maven project that I want to build a mvn site and javadocs and have CruiseControl publish the latest daily builds to a configured static location.
The trouble is the …
1
vote
1answer
56 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</module>
…
