maven-2

Execute file from maven goal.

Hi. I like to integrate compass (http://wiki.github.com/chriseppstein/compass/) in my java project, and I need something to compile .sass files to css without running commands manualy. So is there a way to execute a file using some maven plugin or goal? ...

Maven's jetty plugin SSL configuration issue

I'm using Jetty's plugin for Maven, version 7.0.0.pre5, but I have issues configuring it to have a SSL Connector. Whenever I start the application, it fails stating that the requested implementation is not found. This is the plugin's configuration within my pom.xml <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-mav...

Maven tool to build web application

i m using eclipse 3.2.2 as IDE. i want maven code to build and deploy my web application, which is using spring web mvc 2.0. ...

Build failed question - maven - jre or jdk problem

Hi all, I have my JAVA_HOME set to C:\Program Files (x86)\Java\jdk1.6.0_18 After I run maven install I get this message from eclipse: Reason: Unable to locate the Javac Compiler in: C:\Program Files (x86)\Java\jre6\..\lib\tools.jar Please ensure you are using JDK 1.4 or above and not a JRE (the com.sun.tools.javac.Main class is ...

Removing version number from file name with Maven

I have a project with 5 modules in maven. Right now, when I do a "mvn clean install", it generates an ear containing the two jars, one war and one sar from the other modules. All the file names contain the version, e.g., projectx-ear-2.0.0.ear, projectx-client-2.0.0.jar, etc. I need to rename one of the jars and the final ear to omit t...

Where is the best place to specify maven repositories, pom.xml or settings.xml?

Where is the best place to specify required repositories for maven projects, pom.xml or settings.xml? What are the pros and cons of each location? What is best practice? It seems to me that defining the repositories in the POM is better for a number of reasons: Reproducibility: The dependent artifacts are coming from a known location...

Code Analysis Tools and Inter-Type-Declarations

I have a maven project generated by Spring Roo and use several tools (checkstyle, pmd etc.) to collect information about my project. (namely I am using codehaus' sonar for this) Roo makes heavy use of AspectJ Inter Type Declarations (ITD) to seperate concerns like persistence, javabeans-getter/setters etc. These ITDs are woven in at co...

Using spring framework with maven instead of ant

Is there a tutorial somewhere which shows how to use spring framework with maven instead of ant? This one seems very good but it's all built with ant. EDIT I really don't know which answer to accept both are valid. I'll wait for some time let the community decide ...

How to add maven dependency

I have a jar for jboss messaging, and I don't know group id and artifact id and version, I just have a working jar , how can I add dependency EDIT I assume there is a jar somewhere online, I once found a sontype maven repository with search possability if I found it, probably the messaging jar would be there. Does anybody know the url ...

Maven: add a dependency to a jar by relative path

I have a proprietary jar that I want to add to my pom as a dependency. But I don't want to add it to a repository. The reason is that I want my usual maven commands such as mvn compile, etc, to work out of the box. (Without demanding from the developers a to add it to some repository by themselves). I want the jar to be in a 3rdparty l...

Maven not worth it (yet) for EAR deployment?

I'm in the process of porting several J2EE projects from Ant to Maven2. All of these projects contain 1 EJB and 1 web module, and use the recommended "skinny" EAR packaging method. This means that the JARs that the EJB and/or web modules depend on are all just put in the root of the EAR. Both EJB and web modules have Class-Path entries i...

what do I need to do if I want to convert a eclipse project to start using maven2?

what do I need to do if I want to convert a eclipse project to start using maven2? I know of the maven plugin, but do I need to modify the existing project? Or should I just re-import into a newly created project? ...

Failed eclipse update when trying to install eclipse

When trying to install eclipse using the eclipse new software feature, I get this error: Cannot complete the install because one or more required items could not be found. Software being installed: Maven SCM handler for Subclipse (Optional) 0.9.8.200905041414 (org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.8.200905041414) Mis...

using maven to manage java dependencies in a jruby rails app

I'm trying to write a pom.xml that will allow me to run a command locally and fetch all dependencies that my jruby Rails app has. I'm seeing two different configs though and I'm not totally sure which to use (as I'm not a java person whatsoever) First, many Pom's i'm seeing just have a tag under the root of the pom.xml that list all d...

spring mvc test using eclipse and maven2

So I created a simple web app using maven, the pom.xml is setup in Eclipse just fine. I added apache commons, spring 3.0 as a dependancy. I created a test controller using annotations, and a jsp file. In eclipse, I only see a Run option, and no build option. With maven2 pom.xml setup etc., is just clicking on Run enough to build the p...

setting -source to 1.5, it is set to 1.3 apparently

I am using eclipse, with maven2 plugin. I am trying to setup a simple annotations based spring 3 mvc web application. So I went to RunAs and clicked on 'maven build', I set the goal as 'compile'. When it compiles, I get the error message: E:\dev\eclipse\springmvc2\src\main\java\web\HomeController.java:[5,1] annotations are not support...

Using eclipse with maven plugin, how should I setup my build so it deploys to tomcat?

Using eclipse with maven plugin, how should I setup my build so it deploys to tomcat? I'm not sure if I have to do this in 1 or 2 steps, but I want to compile my spring mvc (3) application and deploy to my local tomcat. Right now I just mapped the RunAs -> Maven build to a 'compile' goal type. I'm very new to do this so not sure how...

Maven project variables for dependencies

I have an html file which loads an applet. The html needs to refer to the jar by name, and since maven names it based on the artifactid, version, etc, the html needs to be dynamically updated as the project evolves. It seems like resource filtering is the way to go, but I can't figure out what the variable to interpolate should look li...

Unwanted jars in my war

I have not mentioned any dependencies in pom.xml, but the war created by maven has quite a few unwanted jars. Any idea why this is happening? ...

How to control a tomcat container during the runtime with maven?

I have a Maven project which executes integration tests for another web-application. This application is deployed and started within a tomcat container. The configuration for this is done in the “cargo-maven2-plugin”: <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <configuration> ...