Tagged Questions

This tag is for Maven 1 related questions. Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.

learn more… | top users | synonyms

3
votes
1answer
406 views

How do you use the maven-simian-plugin in Maven2?

I'm looking for a Maven2 reporting plugin for Simian and the closest thing to such a reporting I found is this. The problem is, the documentation for it appears to be for Maven 1 instead. Why is a ...
2
votes
2answers
121 views

Can you run both maven1 and maven2 at the same time?

Is it possible to have both versions of maven running on the same computer? From what I understand you have to setup environmental variables for both of them, so won't that conflict?
2
votes
5answers
444 views

Browserless, ant-task-oriented Javascript Unit Testing?

I'm looking for a javascript unit test framework that I can use as part of my automated maven build. This CANNOT use an actual browser, and it MUST be fully browserless. I've tried looking at a few ...
2
votes
2answers
724 views

Why does maven install fail during javadoc generation?

When running 'maven install', I get the following.. [INFO] [javadoc:javadoc {execution: default}] [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ...
1
vote
1answer
33 views

How to add JUnit 4 lib. to maven 1.0.2

So the problem is that I use maven 1.0.2 to build my program. I am aware that it is a bit obsolate but It was not my choice to use it. Still I would like to use JUnit 4 to test my app. I did not find ...
1
vote
3answers
620 views

maven settings.xml

I am trying to convert maven1 project.xml to maven 2 pom.xml. maven one:convert plugin converts project.xml to pom.xml. Tried the steps Installed maven 2 cd project-dir (which has my project.xml) ...
1
vote
2answers
814 views

Java + Maven1.x : how to add sun's tools.jar?

I must add tools.jar into my maven1 build config but I can't find any help. Here is the solution I've found using the helpfull sugestion of geo: I have modified the maven.xml build in order to add ...
1
vote
4answers
939 views

Deploying a war to tomcat server with maven 1.1

does anyone know a way to configure a maven goal to deploy to a tomcat server after a build is run? I know that this is possible using the maven-tomcat-plugin but it looks as though as this only works ...
1
vote
1answer
251 views

Running JS minification as a maven goal?

I'm trying to use YUI compressor in a maven goal, but I'm pretty new to the inner workings of maven. I see that I can copy all js to a new directory with the following: <copy todir="blah"> ...
1
vote
1answer
173 views

building jahia from source, having problems

I am trying to build jahia from source for a project at school. From the instructions online, all I seem to find to run is maven install which fails... any help would be much appreciated.
0
votes
0answers
25 views

Jar file path in application.xml incorrect - Maven 1.0 & JBoss 4.0

I'm using Maven 1.0 to generate the ear and deploy it in JBoss 4.0. The issue I'm facing is, the java module entries in ear/META-INF/application.xml are incorrect. I have placed all jars inside a ...
0
votes
2answers
344 views

Warning : No pom file was found, assuming default settings!

I installed Maven 1, following the doc here http://maven.apache.org/maven-1.x/start/install.html Installation was successful, then I typed in "maven site" as shown in the doc here ...
0
votes
1answer
303 views

Using Maven 1.x without extra plugins, how does someone build an executable jar?

Using Maven 1.x with just the bundled/standard plugins, what configuration is necessary to build an executable Jar? Answers should cover: including dependencies in target Jar proper classpath ...