Apache Maven is a tool for project management and build automation. This tag is for questions relating to Maven version 3.x. For non version-specific questions, please use the [maven] tag.
0
votes
1answer
32 views
Maven error with richfaces-showcase of RichFaces 4.3.1 Final
I tried to run richfaces-showcase of RichFaces 4.3.1 Final. When I execute the command "mvn clean package" as readme.txt instructed I get a Maven error. The error text is as follows:
[INFO] ...
2
votes
1answer
90 views
how to run maven project in android ? or convert maven project to android project?
i try to upload video to youtube by use this open source
https://code.google.com/p/ytd-android/
the problem couse by maven tool ... i never use it , and dont know how to use it.
there is way to ...
1
vote
1answer
36 views
Executing Maven 3 goals in order
I have several Maven projects - a web service, which depends on several libraries.
When I add a new feature and want to deploy the web service to the server, I usually need to build these libraries ...
1
vote
1answer
50 views
NoClassDefFoundError on a dependency class in a web application
I have a web application A, which depends on library B, which, in turn, uses library C. A, B and C are all Maven projects (A is a war, B and C are jars).
When I deploy A to the application container, ...
2
votes
1answer
53 views
Deploying AEM with maven (Error)
I am trying to deploy AEM with maven, so I follow this tutorial. When I run the command mvn clear package, I get the following error:
C:\workspace\myproject\app>mvn clean package
[INFO] Scanning ...
1
vote
1answer
19 views
Load a properties inside a jar
Can I load a properties file inside a jar in a maven plugin execution?
I have a jar with a system-properties (among other things). I can download and expand it, but I wonder if I there is a way to ...
0
votes
1answer
42 views
How to configure the Maven dependency for Guice 3.0 for use without AOP?
I have an Android Maven project and want to use Google Guice 3.0 in it.
There is a "No-AOP" version of Guice, which is compatible with Android.
How can I tell Maven to use the "No-AOP" version of ...
1
vote
1answer
55 views
Maven 3.0.5 command error: The goal you specified requires a project to execute but there is no POM in this directory
I execute
mvn install:install-file -DgroupId=es.mityc.jumbo.adsi -DartifactId=xmlsec-1.4.2-ADSI -Dversion=1.0 -Dpackaging=jar -Dfile=C:\Users\AArmijos\Desktop\Factura ...
0
votes
2answers
52 views
Installing Maven 3 on Windows 7
When I type "mvn --version" or "mvn -version", I always receive error "mvn is not recognized as an internal or external command, operable program or batch file.
SO: WIN 7 64 bit
Maven directory:
...
0
votes
1answer
26 views
Maven Javadoc Plugin During Site Goal: javadoc: error - java.lang.OutOfMemoryError: Please increase memory
I have been struggling to increase the memory of my javadoc plugin via my pom file. For some reason my Mac build slave fails during the site goal with an OutOfMemoryError. I tried adjusting the ...
0
votes
0answers
25 views
Hudson does not work with maven
I installed Hudson Server and I am trying to build a project, but I get this error:
[workspace] $ java /geogit/Maven/apache-maven-2.2.1 -cp ...
0
votes
1answer
43 views
Setting up Maven to allow deployment to different repositories easily
I'm currently working in an environment where I define the rules for a lot of people. We currently use Hudson and Artifactory, and I want to evaluate if the switch to Jenkins and Nexus are worth the ...
1
vote
1answer
46 views
could not find artifact while running maven build in jenkins
While building the maven application in jenkins i get the following error
[ERROR] Artifact: com.envoisolutions.sxc:sxc-runtime:jar:0.7.3-osgi has no file.
...
0
votes
0answers
19 views
Why does antrun make dependency resolution fail in mult-module project?
Using Maven 3.0.4, I create a new multi-module POM called "example", with two modules, "example-1" and "example-2", both with JAR packaging. "example-2" depends on "example-1". Other than the POMs, ...
0
votes
1answer
17 views
How to have a pom.xml but prevent Maven being used for building?
I have a project for which I have created a pom.xml. However, I'm not using Maven as my build system, I am using something else (e.g. ANT). But I want the pom.xml to exist for the use of other tools, ...
0
votes
0answers
13 views
Eclipse/Maven - Quite a few invalid checksum leading to invalid LOC header (bad signature)
I am having issues with maven downloading dependencies and having invalid checksums. About one out of ten files are invalid. I tried deleting my repository and I get similar results. I have deleted ...
0
votes
0answers
19 views
maven commands clean insatall does not take code changes in eclipse
I have created maven spring web application in eclipse , I use "clean install" to get the war and I deploy the jar in tomcat.It is working fine, then after I have moved my java files to different ...
0
votes
1answer
25 views
Can maven sortpom plugin affect a project's build result?
Can the Maven Sortpom Plugin affect the result of a project's build ?
Is it possible to have a project build fail just because the sortpom plugin was added ?
0
votes
0answers
25 views
How to fix InstallException/ShellCommandUnresponsiveException?
When I try to deploy my application to Android emulator using mvn android:deploy I often get following error message:
[ERROR] Failed to execute goal ...
0
votes
1answer
43 views
m2e plugin in eclipse indigo not working
1) Install eclipse with m2e
2) Install separately a current maven version (depending on what you need, Maven 2.2.x or Maven 3.0.x)
3) Configure your installed Maven inside Eclipse due to the ...
0
votes
1answer
31 views
Package a multiple-entry jar using maven for hadoop project
I'm new to maven. I want to package a jar of my hadoop project with its dependencies, and then use it like:
hadoop jar project.jar com.abc.def.SomeClass1 -params ...
hadoop jar project.jar ...
2
votes
1answer
45 views
Maven: How to copy sub folders and their content in a different structure
In a Maven project, I have directory, which I need the content from..
${basedir}/target/webapp-SNAPSHOT/WEB-INF/vendorspace/
|- dealo
|-static
|- css
|- ...
1
vote
3answers
62 views
Override Java constant using Maven?
Using Maven, is it possible to override a Java constant?
Imagine I have
public static final String buildBy="Eclipse";
which when using Maven shall be changed to
public static final String ...
1
vote
2answers
125 views
Scene.getStylesheets().add() not working inside jar file
As long as I run my project directly from Eclipse, I have no problem with that:
scene.getStylesheets().add(getClass().getResource("/stylesheet.css").toExternalForm());
But as soon as I run this ...
0
votes
0answers
21 views
Maven Android Plugin - Auto identifying the AVD
I'm using the android-maven-plugin to work with the Android projects. The configuration part of the plugin looks like:
<configuration>
<sdk>
...
0
votes
2answers
41 views
Configure Maven to use javac -O
There is a option javac -O to compile the optimized java code according to the Javac manual. Can I use maven to use this flag?
1
vote
1answer
55 views
Maven Profiles and Tomcat in Eclipse
If I have 2 maven profiles for a WAR application like this:
mvn clean install -Pdevelopment
mvn clean install -Pproduction
and I import it in Eclipse to run in Tomcat, how to I tell Tomcat to use ...
0
votes
1answer
35 views
maven scm - Does maven creates tag automatically?
I have below configurations in place -
<scm>
<connection>scm:svn:http://example.com/tags/MyProject/MyProject-0.1</connection>
...
0
votes
0answers
56 views
maven-release-plugin : exclude target directory for modifications
I'm looking for a way to exclude the 'target' directory modifications during the maven release process. I tried below but it didn't work.
<configuration>
<checkModificationExcludes>
...
0
votes
1answer
32 views
Maven build fails at site default-deploy
I have been struggling to fix my maven build issue from last 2 days with no success almost. can you please help me on this -
I have a parent pom.xml which looks like
<distributionmanagement>
...
0
votes
1answer
42 views
how to pass maven module classes to a maven plugin
I've developed a maven plugin, which can scan classes within a module, to find some specific classes and do something about them.
The problem is that, when I'm using this plugin in a maven module, ...
0
votes
2answers
88 views
How can I create a Maven build profile to conditionally copy files?
I new to maven and I am trying to create pom.xml to build the war files for different environment using profiles
So I created the build target
<build>
...
0
votes
1answer
61 views
Adding SVN arguments in maven-release-plugin
During a mvn release:prepare, maven-release-plugin needs to make some commits (tag and new poms).
I need to be able to add arguments to this SVN command without changing anything but the pom.xml ...
1
vote
1answer
44 views
A project that compiles fine on the command line with maven does not compile in intellij idea 11
As a matter of fact the project compiles just fine with eclipse as well but for some reason IntelliJ is not able to deal with it.
We have other large multi-module projects which load just fine - so ...
0
votes
2answers
62 views
IncompatibleClassChangeError: class ClassMetadataReadingVisitor has interface ClassVisitor as super class
I have built a web application using spring-mvc and mongodb as database. I used maven3 to build the application.
Project builds successfully but when application starts I am getting the following ...
0
votes
1answer
23 views
Making sure maven is running from scratch with a clean repo
I am pretty new to Maven and really not trying to fully learn it right now, just trying to install my java project.
I get some errors (it is from a Hadoop Crunch project) but the errors feel like ...
0
votes
0answers
61 views
Add sources and javadoc dependencies transitively for a dependency?
Hope someone can help me. I have to create a file which contains an ear archive, a Doc folder and a Code folder. Inside Doc folder I have to include one folder for each of our own modules the project ...
0
votes
0answers
72 views
How do I prevent org.eclipse.m2e lifecycle-mapping in my maven pom file?
I have a maven project and we usually edit it with Eclipse. Some developers keep adding information about the org.eclipse.m2e lifecycle-mapping plugin to the pluginManagement section of my ...
0
votes
1answer
31 views
Can you import a profile into a maven pom.xml?
A RESTful web service project that I'm working on needs to be deployed to a very unique environment (that requires a lot of custom configuration) in addition to the typical deployment environment and ...
1
vote
3answers
48 views
Is there a way to cascade the version of a parent pom?
I have a root pom.xml that acts as a parent for several child pom.xml files, which is great if you have one or two child pom.xml files. I am working on a project that has 50+ child pom.xml files, and ...
1
vote
1answer
90 views
JBOSS-AS-MAVEN-PLUGIN :- Authentication Fails BUT Jboss-cli authentications?
I have setup a new JBoss server and am able to access it remotely using 'jboss-cli.bat'.
HOWEVER, when my Hudson job runs, and trys to deploy a war to the server using jboss-as-maven-plugin, it is ...
1
vote
1answer
27 views
Read maven server attributes as properties
I have a server defined in .m2/settings.xml like this:
<server>
<id>foo</id>
<username>bar</username>
<password>baz</password>
</server>
...
1
vote
1answer
47 views
Should performance/integration tests be considered modules in a multi-module Maven project?
In a Maven multi-module project, should I consider the integration/performance tests projects also as modules?
multi-module-project
├── module-war
├── some-other-module
└── etc...
Should I ...
1
vote
0answers
31 views
Is maven-testing-harness no longer developed? Has it been replaced with maven-invoker-plugin?
Is the maven-testing-harness no longer developed? It seems most plugin developers have migrated their projects to use the maven-invoker-plugin. I can see the pros of using the latter, but as I am ...
0
votes
0answers
56 views
Change maven properties using Ant task
I have set a maven property in the pom.xml.
<properties>
<build.start.date>someValue</build.start.date>
</properties>
Now I have an ant task doing the following:
...
1
vote
2answers
26 views
pom.xml in every directory or skip intermediate?
Say my project structure is as follows:
project
|-- servlet
`-- filters
|-- filter1
`-- filter2
Should I have a filters/pom.xml which aggregates filter1 and filter2? Or should I directly ...
0
votes
1answer
40 views
RestAssured with Junit4 throws ClassNotFoundException: org.apache.http.client.methods.HttpPatch
I'm trying to setup a simple rest-assured testcase with Junit 4.8 and maven3 with dependencies
<dependency>
<groupId>com.jayway.restassured</groupId>
...
2
votes
1answer
41 views
How to ignore a Maven plugin
We have a groupId for Maven plugins:
com.company.maven.plugins
Unfortunately, when I created the first plugin in this groupId, I initially used the wrong naming convention.
maven-myplugin-plugin
...
1
vote
0answers
56 views
Maven build runs when I run a Unit test in eclipse
I have a maven project. I am trying to run a single test in maven command line and that works fine. I am trying to debug that test in eclipse and using -Dmaven.surefire.debug option and starting a ...
0
votes
1answer
37 views
failing pull dependencies cloudstack 4 with maven3
mvn -P deps
[INFO] Scanning for projects...
Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom
[ERROR] The build ...


