Apache Maven is a software project management and comprehension tool. This is a tag for Maven related questions that are specific to Maven versions 2.x.

learn more… | top users | synonyms (1)

-5
votes
0answers
13 views

how to migrate maven contained project to ant based [closed]

Am looking the project to move/migrate from maven to ant and should be removed all maven related files in project. Regards, Ravi
0
votes
0answers
18 views

Maven: setup Maven to use javaw instead of java (running from Jenkins)

I need to setup Maven (clean and as Jenkins task) to use javaw instead of java. I do not find such setup option. I see only path to jre. Could you please help me with the setup? Thanks In Advance!
0
votes
1answer
23 views

Maven: trigger task to upload dependency into Nexus if dependency is not there at the build time

I have Maven2 project. This project have 1 internal dependency which stored in internal (for our company) Sonatype Nexus. I setup the dependency version in pom.xml as parameter which I provide via ...
0
votes
1answer
34 views

Spring Tool Suite and Spring Configurator - directory structure

I'm wondering what is the best way to organize Spring Configurator directories in my Maven project ? I wan't to have prod,dev and test config sets with seperate *.xml and *.conf files. And also I'd ...
1
vote
1answer
21 views

How to print maven provided classpath

I am here to get information on how to print maven provided class path. I am able to print maven compile, test and runtime classpath, but I can not find the refid for provided class path. Here is the ...
0
votes
0answers
7 views

Hudson can't use correctly maven-release-plugin

I can't use release:prepare release:perform in Hudson, I am using maven-release-plugin v.2.4.1. Apache Maven output: Checkout:workspace / /home/console/.hudson/jobs/GEOPos2-Watcher/workspace - ...
0
votes
1answer
26 views

Maven war packaging of transitive modules

I have a web-app which provides an implementation of an API that I have written. So, I have a set of three artifacts: my-webapp (war), my-api (jar) and my-impl (jar). The pom's are straight-forward ...
0
votes
0answers
18 views

removing of maven transient dependency coming from parent

I was trying to deploy some test bundle which is using sling testing framework. Here I want to change the parent of the same to some other group. But then how to add the dependency of sling. Which is ...
0
votes
0answers
15 views

groovy (java): exec() do not detach from process (Intellij IDEA vs Maven+TestNG)

I have Groovy Maven2 test project with TestNG and Surefire plugin enabled. I want to launch external process (*.cmd file which start some *.exe file) in last test method, finish my tests and left ...
-1
votes
0answers
17 views

Simulate Browser for jQuery [closed]

I wrote some JsUnit-Tests and like to load jQuery. If jQuery loads, he sais: window is undefined. So i add: window = new Object(); Then jQuery miss: userAgent of undefined. So i change: ...
0
votes
1answer
19 views

How to push built image from 1 Nexus repository to another?

I'm a newbee to Nexus. Having recently incorporated git into our development team, I'm trying to work on a solution to first create a build image of the app (via maven) from a cloned GIT repo, then ...
0
votes
1answer
11 views

How to add all dependencies in single jar in maven and then apply assembly plugin?

My project has one parent module which has 3 child modules. I am trying to create a fat jar using maven assembly plugin. However, what I want is to create a fat jar and then apply assembly.xml file to ...
0
votes
0answers
31 views

Reading a property file taking the key and searching key another property file replace the value using maven

reading a property file taking the key and searching key another property file replace the value of key using maven or ant propertyfile1.properties key1=someValueforkey1 propertyfile2.properties ...
0
votes
1answer
21 views

maven setup another repository for certain dependency

I have Maven2 project. All dependencies except one are downloaded from public repository http://repo.maven.apache.org/maven2/. But I have 1 dependency which I need to download from internal ...
1
vote
1answer
21 views

GAE Maven how to deploy

I'm very new to GAE/Java/Maven and coming from a .net background, is eager to try it out. I've installed the Google App Engine plugin for eclipse 4.2. I created an application using the Google ...
0
votes
1answer
32 views

Maven build: Could not start Tomcat

I am developing web application. In integration testing phase I want to deploy application to tomcat. I am using maven 2.2.1. Here is my pom configuration: <plugin> ...
1
vote
5answers
58 views

How properly import maven projects to eclipse?

I have complex Maven project, which has a parent folder with parent pom.xml and some subfolders for subprojects, each with its own pom.xml. When I checkout the parent folder from a SVN repository 'As ...
-1
votes
0answers
16 views

Maven Tomcat Run error [closed]

I have an application built in Spring+Hibernate with support of Apache Maven 2.21 and Java 7. For running my application, i have used following command: mvn tomcat:run But it is producing ...
0
votes
1answer
16 views

jaxws-maven-plugin to create stubs and include wsdls in target location

During the development, I am facing some issues to generate stubs with maven jaxws-maven-plugin. My requirment is given below. I have some wsdls in my specified location, now my jaxws-maven-plugin ...
1
vote
1answer
47 views

Maven - deploy webapp to tomcat before JUnit test

I have webapp which provides web service. I want to perform JUnit tests with SoapUI to check if this service is working properly. But to test web service application has to be deployed to my Tomcat 7 ...
1
vote
1answer
21 views

Are all Maven options available in m2e?

Although I prefer running Maven from the command line, some of my colleagues are more comfortable launching everything from within Eclipse. For this reason, I'm looking for a way to map all of Maven's ...
0
votes
0answers
42 views

Why can I run this file packaged by Maven by specifying the path as argument but not by setting the path permanently in my path variable?

So, I was trying to run this command: java -cp ./target/storm-starter-0.0.1-SNAPSHOT-jar-with-dependencies.jar storm.starter.ExclamationTopology To run the ExclamationTopology class in ...
0
votes
0answers
15 views

Using remote library in Eclipse RSE project

I have a server on debian that I only can access via SSH. So I tried to use RSE on Eclipse and this works fine. I could connect to the server and create files. The problem is: on Debian, I created ...
1
vote
1answer
28 views

What's the difference between these Maven dependency scopes: provided/compile/system/

I have read the documentation and have some understanding. Please correct or inform me of the truth; as per my understanding: provided - The dependencies must will be on the machine you run the code ...
0
votes
3answers
59 views

Why can't I run the example from storm-starter using this command?

I've have had no experience using Storm or Maven before, and I'm working on my starter project. When I compile the starter project uploaded on the git website using the command given there i.e. this: ...
0
votes
1answer
23 views

How do I get verbose output from Maven in the Eclipse console

I am trying to figure out why a maven project is not packaging a jar. This is a builds successfully on my coworkers computers. There are no errors when I build, but the jar is not in the destination ...
2
votes
0answers
38 views

Maven generation of javadoc fails while creating site

I have a problem releasing my gwt project with maven (version 2.2.1). The generation of the release files (war, sources, javadoc) works perfect. All files are generated and uploaded on my release ...
0
votes
1answer
29 views

Maven logs in the output file and also in the console

I need to see the maven logs in the file and also in the console. If i try using mvn clean install > log.txt. Logs are storing in the file only, console output is not displaying. Can anyone please ...
-4
votes
0answers
57 views

What is a really good use case of Maven? [closed]

This is my first internship and for something that I'll work on later, I've been told to familiarize myself with Maven. I've never used Ant for Java before either, so it was a little tough going ...
0
votes
2answers
80 views

Is there a HTTPS Maven repository URL for spring source

I need a HTTPS Maven repository URL for spring source to configure in my pom.xml: Right now I use the following http urls: http://repository.springsource.com/maven/bundles/release ...
0
votes
0answers
36 views

maven plugin not found

I have a problem with the maven plugin. [ERROR] No plugin found for prefix 'exec' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the ...
0
votes
1answer
23 views

Maven multimodule with own SCM layout - how to build the tag?

Let's say I have a bunch of maven modules, each with its own trunk/branches/tags. Picture something like the following. portal_root +project1 +tags +branches +trunk ...
0
votes
1answer
30 views

Running a maven build inside a shell script for loop

I have written a script that takes project names as arguments and runs a maven build on them by iterating over the arguments. #!/bin/bash -xv name=`date +%Y:%m:%d-%T` start_time=`date +%s` ...
0
votes
2answers
34 views

Easy way to share profile configuration among profiles in Maven?

I have a maven profile defined like so; <profile> <id>instrumentation</id> <activation> ...
1
vote
2answers
39 views

Out of memory issue in gwt application

I have been trying to increase heap size max to 1440 of 4 GB ram, but still i am getting the Out of memory issue after two/three refreshes in two different browsers. I have set the VM aruments max to ...
0
votes
1answer
25 views

How to continue the maven release:perfom from the failed point

Can u please any one suggest how to continue the maven release:perform from the failed point. Since the some of the jars got uploaded in the nexus. We need to continue the build fromt he failed ...
0
votes
1answer
18 views

If Maven release:prepare fails, how to continue from the failed point?

Can anyone please suggest how to continue the maven release:prepare from the point which failed? I tried with the resume command, but it does not continue from the failed point.
0
votes
0answers
25 views

Maven - Unknow Proxy

Plugin org.apache.maven.plugins:maven-install-plugin:2.3.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for ...
0
votes
1answer
43 views

maven not packaging dependencies in jar [closed]

The problem I have a nested multiple module (correct terminology?) Maven project and the dependencies for one of the modules are not getting packaged with the jar when I mvn clean package The ...
0
votes
0answers
36 views

Maven install/compile Failure

I am getting below exception , When i compile/install through maven in command prompt / eclipse. [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ dashboard --- May 22, 2013 ...
0
votes
1answer
32 views

add javascript dependencies like java dependencies in maven 2?

I'm using apache maven for build project, so i want to add my dependency javascript frameworks automatically based their version , organizing javascript frameworks , and download only ...
0
votes
2answers
43 views

Error in pom.xml when adding sauce labs dependencies

I am getting errors when I add sauce labs dependency in my pom xml. <dependency> <groupId>com.saucelabs</groupId> ...
0
votes
1answer
38 views

All maven flyway plugins are executed with the last user

I have two oracle users and I am creating different schema for them. I mean each schema has different tables, types etc. I wanted to create both schemas by flyway maven plugin, first I had two maven ...
0
votes
3answers
68 views

Maven Building Error

when i try to run mvn clean package I am getting the following error Downloading: http://repo.maven.apache.org/maven2/org/apache/maven ...
1
vote
2answers
47 views

execute maven mainclass multiple times with different sets of arguments

how can i invoke maven mainclass multiple times with different arguments <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> ...
0
votes
1answer
139 views

Not able to generate client code with wsdl2java and maven using CXF

I'm using maven cxf-codegen-plugin to generate client files from wsdl but not able to do so. I want that all the wsdl files in the folder src/main/wsdl should be scanned and corresponding clients ...
0
votes
0answers
26 views

How to build a war from an existing directory

My pom.xml looks like this: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
20 views

What's the recommended way of updating maven repository metadata

I'll like to know, what's the recommended way of updating maven repository metadata? The scenario I'm working with is such that the content of maven-cargo plugin metadata is stale and does not ...
1
vote
2answers
122 views

How to add multiple source directories to pom.xml

I am getting package org.testng.annotations does not exist error when I am trying to compile multiple source directories using maven. I am running webdriver tests and all of my tests are importing ...
0
votes
1answer
28 views

Doing an ant depend in maven

On a new project we are using maven. I have found a problem that we solved in ant by using the ant target depend. The problem is that we have a class with public fields that are being referenced from ...

1 2 3 4 5 96