Apache Maven is a software project management and comprehension tool. This tag is for questions that don't relate to a specific maven version.
0
votes
1answer
11 views
How do I manage inter-branch dependencies in Perforce?
We are using Perforce and Maven and we are in a situation where we have one branch A that hosts a mature project and another branch B, that we are starting to dev on that uses the code hosted in the ...
0
votes
1answer
18 views
How do I use log4j with Maven and executable jar file?
I'm trying to get log4j working in a simple application but I'm getting the message:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/log4j/Logger
I execute the application ...
0
votes
0answers
6 views
Report JUnit tests results from PhantomJS to Maven's Surefire plugin
Right now I'm calling an Ant buildall.xml inside my pom.xml (maven-antrun-plugin, test phase):
pom.xml
<ant antfile="src/test/js/build.xml" target="init" useNativeBasedir="true"/>
That ...
0
votes
1answer
29 views
How can i use taglib in JSP page
I know this problem has been posted many times but every solutions that have been posted didn't solve my problem whereas my issue is the same.
I have a JSP page and i want to use taglib in. So i added ...
0
votes
1answer
8 views
Can not build cassandra database stress client by DataStex
Im working with my own database cluster with cassandra. I want to try some stress tests with my database, thats why i downloaded DataStax Java-driver for Cassandra.
...
0
votes
0answers
10 views
Excluding files with Maven shade plugin doesn't work
I run into problems at Maven compile when using JMockit together with JUnit and Android:
[INFO] UNEXPECTED TOP-LEVEL EXCEPTION: [INFO]
java.lang.IllegalArgumentException: already added:
...
0
votes
1answer
14 views
Gradle equivalent of maven-dependency-plugin
My root problem is that when running "spring-test"-based tests for my controllers and Freemarker views I need to have all taglibs inside WEB-INF/lib folder - otherwise freemarker will not find them ...
1
vote
1answer
11 views
org.hibernate.InvalidMappingException: Could not parse mapping document from resource *.hbm.xml
I know this question has been asked a lot, but I read almost every one of them but non of them helped me.
I'm writing an eclipse maven project with hibernate and I'm getting this error:
...
0
votes
1answer
16 views
Unable to resolve org.eclipse.persistence.exceptions.EntityManagerSetupException
I am trying to run the maven project, i am able to deploy the project but after deploying the project when i click any function to perform an operation it shows following exception:
root cause:
...
0
votes
1answer
31 views
Maven 'Missing artifact
My local rpository is already has cxf-bundle-2.7.5.jar(download from search.maven.org by myself) and pom but eclipse still get a error 'Missing artifact org.apache.cxf:cxf-bundle:bundle:2.7.5' and ...
0
votes
1answer
25 views
AndroidAnnotations processing fails in IntelliJ because R.java isn't generated
I think there's some problem with IntelliJ when it generates the R.java file, which leads to a problem in AndroidAnnotations because it can't resolve the resource id for my layout.
Here's my ...
0
votes
1answer
19 views
Deploying maven project to glassfish with Netbeans
this is my first post here so I would like to say hi to this wonderful community. Tips found here helped me many times, but now I am in need to ask a question
So here is my problem. I'm struggling to ...
1
vote
1answer
15 views
Maven - Error trying to adding arbitrary classpath in Manifest.mf
I have this code to add my classpath:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
...
0
votes
0answers
7 views
Error: Error “No resource found that matches the given name: attr 'vpiTabPageIndicatorStyle'” when building with maven
I've maven project where ViewPagerIndicator added as submodule. Now I'm trying to add custom style to TabPageIndicator.
Here is my styles code:
<style name="AppTheme" ...
0
votes
0answers
11 views
deploying application glassfish mysql connection closed
If I deploy my Java (Maven) Web-application (which makes use of a MySQL database) its database get closed after a while.
Is it possible to remain it online for always? The application should be ...
2
votes
1answer
45 views
In EAR project EJBs appear twice when deployng
When I deploy EAR project, I noted that same EJBs appear twice - in WAR and JAR(EJB) modules. Where can be problem?
I build project using Maven. And didn't explicitly define any ejb-jar.xml.
In ...
0
votes
1answer
9 views
Maven archetype for Eclipse RCP
Is there maven archetype (template) for Eclipse RCP / plugin ?
Related How to create new Eclipse RCP project using Maven?
0
votes
1answer
35 views
JAR File Fails - Maven & Hibernate Project
I have an app that do simple CRUDs ops (Create, read, update, delete with MySQL).
This app is with maven & hibernate. Everything is fine when I debug and execute the app into the IDE (eclipse).
...
5
votes
2answers
164 views
Android Maven Could not find tool 'aapt'
i was trying to follow this tutorial:
http://www.gdgankara.org/2012/11/01/step-by-step-android-development-with-maven/
but after setting up the environment, and create a project, at the "run ...
0
votes
1answer
14 views
maven bundling jar in war file even though scope is provided
I have declared in my pom.xml
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
...
0
votes
1answer
36 views
Spring MVC and Angularjs
Currently I´m trying to learn Angular JS, but firstly I want to setup my environment with spring mvc.
At the moment I only want to work with rest, but I have a doubt for what is the best way to ...
0
votes
0answers
17 views
maven password encryption issue
when executing command: mvn -ep for encrypting server password for settings.xml from my windows box the command terminal just hangs. Any ideas whats wrong? The server password only has numbers and ...
0
votes
2answers
20 views
Why does Maven think I'm referencing slf4j-simple version 1.5.2 when the pom clearly says 1.6.1?
I'm working on a unit test in code that I haven't looked at before. I noticed that I was getting a NoSuchMethodError with a SLF call. This apparently is due to different versions of the SLF pieces ...
0
votes
0answers
18 views
NetBeans & Maven: add JavaScript API from dependency
I am currently working on a Maven web application with NetBeans 7.3. My HTML files need some .js which I would like to include as a Maven dependency. The dependency is packaged as a WAR.
However, ...
0
votes
1answer
17 views
Common software licenses allowing unrestricted distribution?
Reading how to upload third parties artifacts to the Maven central repository I found this:
make sure that the artifact has a license compatible with unrestricted
distribution
Can someone give ...
1
vote
1answer
32 views
Use maven to “extend” existing jar file
my project contains a couple of class which have to be integrated into an final jar file.
So my current "workflow" looks like:
mvn compile && jar uf contribution.jar -C target/classes .
I ...
0
votes
0answers
37 views
System scope dependency resulting in ClassNotFoundExcpetion
When I try to run my war using tomcat7:run-war using M2E eclipse, it gives a ClassNotFoundException for the classes present in the particular dependency.
As I understand system scope dependency will ...
0
votes
1answer
23 views
Is it possible to configure a Jenkins Build Job to pick maven artifacts from local maven repository
Is it possible in someway to configure my build job such that rather than picking maven artifacts from the central repo , it picks them from the local maven repo. residing on my system?
NOTE - I want ...
0
votes
1answer
13 views
Maven Site scannotation.jar
i'm trying to get maven site running. But for now four hours I'm getting a Problem with a
dependency.
When I'm running maven I get this failure
[WARNING] Unable to create Maven project for
...
0
votes
1answer
10 views
Maven Overlay: Base project always starts tomcat on install
I have 3 projects: parent, base and demo.
Parent is for global plugins and dependencies:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
0answers
23 views
maven assembly archive with leading ./ folder
I’m using maven assembly plugin that creates a targz archive with this descriptor:
<assembly>
<formats>
<format>tar.gz</format>
</formats>
...
0
votes
0answers
22 views
Maven archetype: how to copy file from disk to newly created project?
I try to write a maven archetype. One of the its input properties, "fileLocation" contains an absolute path to file on the disk. How can I make archetype copy this file to newly created project?
I ...
0
votes
0answers
23 views
exec-maven-plugin starts not in the right phase
I want to start a server in pre-integration-phase and do some integration tests. Problem is that it only starts after the integration tests.
My pom looks like this:
plugin>
...
1
vote
0answers
21 views
How to include a jar of dependency in an OSGi bundle using maven bundle plugin?
I have an OSGi compliant bundle(jar), in which I want to add a jar of a dependency. The dependecy I want to add is of a Database Driver. That jar is not present in the lib folder of the Karaf ...
0
votes
1answer
15 views
Marginalia / Docco / etc for Java Maven projects?
Is it possible to run Marginalia on a Java (multi-module) project which uses Maven?
Or is there any other alternative that's similar to Marginalia or Docco that can do this?
What's important to me ...
1
vote
0answers
15 views
Using liquibase file paths via both maven and spring
I update scheme and initial data in spring context using the following beean:
<bean id="liquibase" class="liquibase.integration.spring.SpringLiquibase">
<property name="dataSource" ...
0
votes
0answers
11 views
Maven: How to setup a bean once and reuse it among submodules
I am doing something that doesn't seem strange, but I couldn't find any information about it anywhere. I have a Maven project with submodules A and B. In order to run the tests (TestNG) I need to ...
1
vote
2answers
40 views
Maven: Parent Spring Webapp
I would like to have a framework base code for all my webapps using Maven and Spring.
Tomcat7 is starting correctly on my child project, but I get a 404 when trying to open index.html.
Parent POM:
...
0
votes
1answer
31 views
Maven install error javax.el.ELContext not found and javax.el.ELResolver not found
I am using Maven 3 and JDK 1.7. When I tried to do mvn install, I am getting the following errors
[ERROR] /domain/view/EmployeeNameConverter.java:[29,76] cannot access
javax.el.ELContext
class file ...
0
votes
0answers
14 views
SVN versioning and remote deployment of a folder structure
there is a project is kept in svn which primarily has some scripts which will invoke a data transformation tool
The current way of deployment to various environment is all manual.
Scripts are ...
1
vote
1answer
30 views
My first maven example fails (using m2eclipse) : 'mainClass' missing
I am trying to get work this Maven by Example, using Eclipse + m2Eclipse plugin. However, I got this error
[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:java ...
0
votes
0answers
29 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 ...
0
votes
1answer
17 views
Make GWT Maven Plugin use -XdisableUpdateCheck flag during GWT compile
I have several GWT-based projects that won't compile unless the "-XdisableUpdateCheck" flag is passed to the GWT compiler. I've been trying to mavenize these projects by using the "gwt-maven-plugin"; ...
2
votes
2answers
52 views
Differences between the commands “mvn clean package” and “mvn clean install”? [closed]
What are the exactly differences between these two maven commands?
1
vote
1answer
24 views
Unit Testing Postgres Database with Maven
First let me explain what I am doing:
Creating a Java project in Eclipse (JUNO) to unit test SQL for a Postgres database.
Using Maven2 as the build tool. I have DBUnit, and SQL maven plugins.
The ...
0
votes
0answers
33 views
How to run a parameterized suite file from command line using maven
I am trying to find out how to run a parameterized suite file from command line using maven. I am using IntelliJ to write my webdriver tests and in that IDE I just right click on the suite file and ...
0
votes
0answers
9 views
Signed Vs unsigned library with maven
We are refactoring an old project to split the packages into smaller libraries. At the end, the libraries are loaded into a webstart application, so we need to sign the jars we are using.
All this ...
0
votes
1answer
24 views
With maven, do I still need to configure jdb driver and datasources?
I want to write an Java EE 6 app, on JBoss 7.1, with JPA (Hibernate as JPA provider) and SqlServer.
The build tool is, for better or worse, Maven 3.
What does Maven arrange/set up for me in terms ...
0
votes
1answer
37 views
Sign dependencies with maven
I need to sign the project dependencies using maven. I'm working on an applet and managed to sign the main jar but my dependencies are not signed at the moment.
0
votes
0answers
15 views
How do I DYNAMICALLY update the entries within the parent element of a child pom.xml for a library project?
I need to be able to DYNAMICALLY update the entries within the parent element of a child pom.xml for a library project based on the parent that library is being used from.
This builds on the initial ...