0
votes
0answers
17 views

Migrating from Richfaces-4.1.0.Final to Richfaces-4.3.2.Final

Recently I was trying to upgrade my application from RF-4.1.0.Final to RF-4.3.2.Final. Application Server I am using is Tomcat-7 and the project is built using Maven. Few issues that I had faced: ...
0
votes
0answers
60 views

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:

I am using Maven 3 and JDK 1.7. When I tried to do mvn install, I am getting the following errors [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1: compile ...
1
vote
1answer
51 views

Packaging war file with maven

I thought that, if my project is named my-web-application, than when I call mvn clean install maven first compiles to target\my-web-application-1.0 folder and than "zips" that folder to ...
0
votes
2answers
26 views

maven pass command argument at build time to overwrite property

In our application, we have a system to whitelabel. in application.properties there is a setting theme=default this setting is injected into a Spring managed bean, which then does manipulation of ...
0
votes
1answer
63 views

Weblogic11g - java.lang.NoSuchMethodError: javax.persistence.OneToOne.orphanRemoval()z

I know this question has been asked quite a few times over here, but none of the solutions seemed to worked for me. Pardon me for asking this one again as I am new to both maven and hibernate. ...
3
votes
2answers
81 views

Maven compilation failure when switching on enum

I am mavenifying (is that a word?) a project whose build process has been so far based entirely on ant/shell scripts. Consider the following enum public enum ResourceType { A, B; } The ...
0
votes
1answer
46 views

Maven : Unable to get Property Value from Proprties file

I'm a newbee in apache Maven. When i try to read the values from the properties file, it's not picking the value. I already seen all the previously asked questions in SO. But no luck with that. This ...
0
votes
1answer
51 views
+50

Get all the dependencies of a MavenProject (including transitive ones) using Aether

How can you get all the dependencies of a MavenProject (including transitive ones) using Aether? I have seen numerous examples where you specify the gav and it resolves the artifact and all it's ...
2
votes
1answer
48 views

How to exclude test dependencies from a shaded maven jar?

I'm using the maven-shade-plugin and I'd like to exclude not only my test code, but my test dependencies in the shaded jar. I realize I can specifically exclude certain artifacts (like junit), but ...
0
votes
1answer
40 views

What is the solution to this strange behavior of JPA Spring EntityManager

I'm developing a webapp with JPA, Spring MVC under Maven and Hibernate Framework, I have this list method: @Transactional public List<Person> list() throws DatabaseException { ...
6
votes
3answers
85 views

Why maven is downloading metadata every time?

Below is the error I usually get when my internet connection is flanky when trying to build a web application with maven. My question is that, why does maven always have to download every time when ...
0
votes
0answers
17 views

Creating a multimodule directory assembly fails

I have a multimodule project containing three projects. I try to copy the content of src/main/config of each module to target/benchmark/config in the parent project directory. parent pom.xml ...
0
votes
3answers
32 views

Maven project depending on a JAR compiled in a different encoding

If my project is compiled with UTF-8 encoding like this: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> ...
0
votes
1answer
30 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] ...
1
vote
1answer
49 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, ...
0
votes
1answer
41 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 ...
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 ...
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
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?
0
votes
2answers
84 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
58 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
59 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
98 views

Could not load org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSABeanInfo

While build my application i am getting below error. I search online, i did not find any solution .......... Apr 05, 2013 2:46:34 AM org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: ...
0
votes
0answers
38 views

Skip compiling and packaging specific module with Maven

I have big project managed using maven and divided into three modules: common, ejb and web. Maven creates a final EAR by combining two JARs and one WAR file. If I make some change in only 'web' ...
1
vote
4answers
71 views

How do I include dependencies only in my war?

I would like to include (maven) dependencies in my war while making sure that they are not in the runtime or test scope. The problem is the following: There a number of jars (let's say jar A, B, ...
2
votes
2answers
146 views

NoClassDefFoundError in web application running on Tomcat 7

I have web application written in Java using gucie-servlet framework being built by Maven 3. When I deploy it on Tomcat 7 container and try to access it using browser, Tomcat replies with 404 status ...
1
vote
0answers
91 views

component lookup exception with org.apache.maven.repository.RepositorySystem in Maven plugin testing

I'm trying to use maven-plugin-testing-harness version 2.1 with the following test case: public class FooTest extends AbstractMojoTestCase { @Override protected void setUp() throws Exception { ...
0
votes
2answers
640 views

Java code throws exception after adding Selenium-java-2.31.0 library in Maven

I am working on Netbeans. I added a library selenium-java-2.31.0. But it shows exception. I added all the libraries on which this library is dependent. I follow this link to add library in netbeans. ...
0
votes
1answer
111 views

Maven does not find dependencies at compile type

I have a little experimental project managed by Maven. It uses a library for generating PDFs. This is my pom.xml: <project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
1answer
96 views

How to compile Java Enum in Maven?

Most recently I am working with maven 3.x, Eclipse JNO JavaEE IDE with JDK 1.6.0_26. Some where in my project I used enum both inside and outside of a class. When I run clean build it appear an error ...
1
vote
1answer
114 views

Ensuring MAVEN_HOME is set correctly

A Java and Maven noob here: Using OSX 10.8 And Installed Maven with HomeBrew 1- If I say which mvn I will get this: /usr/local/bin/mvn 2- If I say echo $MAVEN_HOME I will get nothing back. 3- If ...
0
votes
0answers
99 views

Error ArtifactTransferException

Hi I am new in maven java. I want to make a maven project in Eclipse Juno, but by saving change in Eclipse this errors appears: my project is like: example. - Archive for required library: ...
0
votes
0answers
111 views

JUnit test executions in Jenkins are not finishing properly

I have a Maven 3 project with JUnit test which are running in Jenkins. The problem that I'm facing is that the execution in Jenkins doesn't finish in case of a selenium error, but is kind of stuck ...
3
votes
1answer
127 views

How to modify pom.xml so Maven 3.0.4 does not think I am running SDK 1.3

I know this question gets asked every so often, but the solutions out there seem to be for older versions of Maven. The version I am running: hduser@lightning252:~/spark-0.7.0-2/examples/ex2$ mvn ...
0
votes
1answer
103 views

How to use Maven Release Plugin with Multiple Maven Projects

I'm using Maven 3. I have multiple maven projects, namely: the 'data model', the 'service', and the 'presentation', split into 3 different projects. They are configured separately (ie. not using ...
0
votes
0answers
75 views

HTTP Authentication issue when debugging jenkins plugin

I'm attempting to write a plugin for jenkins, and I'm new to both jenkins plug-in development and maven. I have a third party library that authenticates to a server. The library is a dependency for ...
0
votes
2answers
70 views

Configuration for JUnit test execution on multiple environments

I have a Java project containing JUnit tests that needs to be run on different test environments (Dev, Staging, etc.) via Jenkins. The solution that I currently have to build the project on the ...
0
votes
0answers
75 views

Execution of JUnit tests on multiple environments

I have a Maven 3 project that contains JUnit tests. In order to run the test on different environments (Dev, Staging, etc.) via Jenkins I've added the following configuration into the POM: ...
0
votes
2answers
40 views

No versions available for > javax.jdo:jdo-api:jar:[3.0, 4.0) within specified range

I am trying to enhance my Google App Engine project, and I keep getting this error. It was working fine before I had to re-install my OS on my machine and now it complains about this: [ERROR] ...
2
votes
5answers
164 views

Maven, Jenkins - how to build project to different test environments?

I have a Java project containing junit tests that needs to be run on different test environments (Dev, Staging, etc.) via Jenkins. How can I setup the building of the project to the different ...
0
votes
1answer
118 views

Maven 3.0.5 and IntelliJ 12 building two jar files

I am using Maven 3.0.5 with IntelliJ 12 and my pom file is set to build a jar with dependencies. Now that works great but my question is this. How do I tell the pom file to only build one jar? Right ...
0
votes
3answers
205 views

Using Maven to download dependencies to a directory on the command line

I need to download all transitive dependencies of a project to a directory on the command line without having a pom.xml file or other script. Ideally I would be able to do this with one or two ...
1
vote
2answers
54 views

Export Maven3 project from one eclipse instance to another

I have created a Maven3 web project in eclipse STS (maven-archetype-webapp). Now I'd like to carry around that project between two machines by just exporting it from eclipse and importing it into ...
0
votes
1answer
38 views

maven filtering API in MOJO

I try to develop a maven plugin with resource filtering. In my code i have this : Resource file = new Resource(); file.setDirectory(buildDir.getAbsolutePath()); file.addInclude("appcfg.xml"); ...
0
votes
1answer
19 views

Profile not part of artifact name

My project uses code that can run on either Android or Java. To abstract out the non-common pieces, we use the same API but platform specific implementations - one for Android and one for Java. ...
0
votes
3answers
78 views

Alternative to compiling against weblogic.jar?

I have inherited an old project that using ant to build against weblogic.jar. I am moving this into a more modern maven based build environment and I don't want to check in weblogic.jar ( which is ...
1
vote
1answer
695 views

Maven & Protobuf compile error: Cannot find symbol in package com.google.protobuf

I'm new to Linux and Protobuf.. I need help. I'm trying to "mvn package" a project that contains many ".proto" files, and a pom.xml file of course... I'm working on Ubuntu ...
0
votes
0answers
349 views

'The system cannot find the path specified' error in maven installation

Followed all the instructions on http://maven.apache.org/download.cgi When I run 'mvn --version' in cmd, I get ........ Apache Maven 3.0.4 (r1232337; 2012-01-17 08:44:56+0000) Maven home: ...

1 2 3 4 5 7