A Project Object Model or POM is the fundamental unit of work in Maven.
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
0answers
21 views
External jar found in Maven Web Application but not when being deployed
I recently created a Maven Web Application through Netbeans 7.3, using GlassFish 3.1.2. In this I use an external jar, so I added it in pom.xml:
<dependencies>
...
...
1
vote
2answers
28 views
Compiling multiple .as files using Maven
I am having issues getting maven to do a simple clean install I am getting the following error:
Failed to execute goal org.sonatype.flexmojos:flexmojos-maven-plugin:3.8:compile-swf ...
0
votes
1answer
47 views
Spring Dependency Resolution
I am new to Spring and I am going to develop my first Helloworld Application in spring.
What I use
Spring 2.5.6
JDK 1.7
Eclipse 3.6
Maven
I downloaded Spring framework and added all the required ...
1
vote
2answers
62 views
How to make a runnable jar of my maven project?
I want to make a jar file of my project but it shows error when I try to make jar.
Till now, I build a jar that is executed by using a command ,
java -cp <JAR FILE> <MAIN CLASS NAME>.
...
0
votes
1answer
20 views
Split my maven pom into different files
I do not want to change my project/module structure. Its just my pom file is getting large and complex (due to lots of dependencies) and want to separate it into easily navigable sub files ... is this ...
0
votes
1answer
26 views
Class files are not generated in pom.xml
I am using the below pom.xml for my application
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
1answer
16 views
javax.servlet.request.X509Certificate issue with returns null value
When I try to run the following code from my Eclipse, I always get the return value as null:
X509Certificate cert[] = (X509Certificate[]) ...
1
vote
1answer
40 views
maven settings.xml configuration for looking up workspace artifacts
I'm using maven and I'm currently stumped with the following issue:
Project setup:
- master (parent project)
- module1 (parent is master)
- module2 (parent is master and needs module1 as "provided")
...
0
votes
1answer
24 views
How do i get specific version ID as property in pom.xml with maven
My pom contains a version number following a sequence similar to 2.0-SNAPSHOT, at the same time we build the project with a manifest file, that needs parts of that version number since other projects ...
0
votes
1answer
34 views
maven dependency error in jira plugin project
My jira plugin project was working fine. I have executed "atlas-clean" as changes was not reflecting in JIRA.
Now, when i execute - atlas-run then it gives me dependency errors as below:
...
0
votes
0answers
80 views
Spring + Hibernate properties + c3p0 + Maven / pom filter + Jetty + Jndi Datasource
I am going nuts trying to configure all of the moving parts. I'm trying to plug a c3p0 datasource, defined in jetty-env.xml using values from the pom.xml, into my Spring context.
The first problem I ...
-2
votes
1answer
34 views
Changing pom.xml doesn't update libraries in Eclipse
I have pom.xml like this:
...
<properties>
<spring.version>3.0.5.RELEASE</spring.version>
</properties>
<dependencies>
<!-- Spring 3 dependencies -->
...
1
vote
2answers
48 views
How can I add meta data to a maven pom
I have a maven pom which is deployed to a repo -And I want to add extra meta data to the tags..... For example, date created, git md5, etc...
Most importantly , I want this meta data to be seen in ...
1
vote
0answers
27 views
how to call JScript while creating an native package in maven
I am using maven.
I have an JScript that will create an runtime/jre/lib/ext folder while installing an application because default a self-contained application does not contain full copy of Java ...
0
votes
2answers
26 views
Configure pom.xml for hibernate 3.6
I tried to conigure pom.xml file for my Spring 3 & Hibernate 3.6 application.
The relevant part of pom.xml looks like this:
<dependency>
<groupId>mysql</groupId>
...
0
votes
0answers
20 views
maven profile dependent property
My maven pom looks like this:
<...>
<profiles>
<profile>
<...>
<id>1</id>
<properties>
...
0
votes
2answers
45 views
Slash in property name in pom.xml
I have a problem, what I cannot solve.
I want to build my eclipse cdo server with Tycho/Maven and also I want to have the prossibility to start my cdo-server.product out of eclipse.
The cdo server ...
0
votes
0answers
52 views
Hibernate core dependency with maven (Using intellij)
I'm getting an error with IntelliJ inspector when I add hibernate dependency in pom.xml:
<dependency>
<groupId>org.hibernate</groupId>
...
0
votes
1answer
76 views
Error in Spring : org.springframework.beans.factory.NoSuchBeanDefinitionException:
I am facing this error in integration of spring security :
org.springframework.beans.factory.NoSuchBeanDefinitionException: No
bean named 'springSecurityFilterChain' is defined
This is my ...
1
vote
1answer
39 views
Including a jar in maven local repository
I want to include a jar in my local repository(google-api-java-client 1.6.0-beta). To include that we need to write in the pom.xml, but while I try to include it , its not getting included in local ...
1
vote
4answers
121 views
My maven module cannot be built and I don´t understand why
I am learning Maven and trying to set up a simple project. I would like this structure:
-myproject
-myproject-ear
-myproject-service
-webservice
-myproject-ejb
EDIT 1
Solved. New problem ...
0
votes
1answer
49 views
Maven multi-module build with eclipse
I am moving to maven multi-module build.
My project structure looks as follows:
MyProject
|-->MyProject-Core
| |->pom.xml (packaging jar)
|-->MyProject-Assets
| |->pom.xml ...
0
votes
0answers
60 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
33 views
How to know (pragmatically) correct maven artifact-id group-id for a jar name
Could you please let me know if there is any search service available where I can search maven artifact-id, group-id for a jar pragmatically.
The idea is to build a simple tool (may be a jar running ...
1
vote
1answer
48 views
Where can I find a tycho pom first feature project to build a P2 repository?
I want to generate a P2 repository from OSGI bundles that reside on maven central.
I have
defined a POM-first feature project using dependencies=consider
defined Maven dependencies with scope ...
0
votes
1answer
65 views
Add maven's output directory to exec:java classpath
I want to add the target/classes directory to maven's exec:java classpath. The compilation and runtime dependencies are handled fine, but the resources copied from src/*/resources are not available ...
0
votes
2answers
82 views
Primefaces 3.3, POM, tomcat 7.0.39 and Jboss as EAP 5.1
I'm working with primefaces 3.3 and JSF 2.0. And the structure of the pom below, when I generate a war, run (work) only on tomcat 7.0.39. I would like to know what I need to change the pom for the war ...
0
votes
0answers
40 views
Calling profile of a child module from profile defined in parent POM
I have the following profile in parent POM :
<profile>
<id>myprofile</id>
<activation>
<activeByDefault>false</activeByDefault>
...
0
votes
1answer
129 views
How does Jenkins lookup for maven repositories in Cloudbees?
I am facing regular issue with the way Cloudbees Jenkins lookup for maven repositories. Our project is still not mature so we use the private repository and an external SVN on Assembla. Usually ...
0
votes
1answer
51 views
Inclusion of jar in maven project
I am working on a maven project which contains a parent pom that contains common dependencies of all the sub projects. The problem I am getting is in the inclusion of hibernate-jpa-2.0-api jar .When I ...
0
votes
0answers
24 views
Trying to import jar files with m2eclipse in eclipse
I imported XChange from GitHub using File->Import->"Check out Maven Projetcs from SCM" directly from https://github.com/timmolter/XChange.git in Eclipse 4.2 using eGit.
This worked fine, but then I ...
0
votes
2answers
60 views
StringEscapeUtils can not be resolved
I have added the dependency in pom.xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
...
0
votes
1answer
35 views
Adding Embeded-Dependency in maven
Actually when i build my project it deploys the bundle to the running OSGI console. Now the bundle is in installed state and shows an red alert that commons-net bundle can not be find.
One way of ...
0
votes
2answers
60 views
maven deployment with ftp uploading: I want to upload just the war file but is uploading more files
I am following instructions exactly as specified here:
http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploy-ftp.html
(The only difference is that I'm using version 2.4 of wagon-ftp).
...
3
votes
2answers
207 views
How to set custom icon for javafx native package icon on Windows
I am trying to chance the icon of the exe file while creating native bundling of javafx packaging.
I tried adding icon into pom.xml but till it wont work out for me as it gives default icon
Using ...
0
votes
1answer
49 views
Download specific POM file using it's Maven artifact
I'm new to Maven and it's concept, but the big picture is that I need to download (in command line) the POM file of a certain artifact which is in a remote maven repository (Artifactory) using just ...
2
votes
3answers
61 views
How do I set in the pom to not compile tests?
How do I set in the pom to not compile tests in Maven? I've tried:
<properties>
<skipTests>true</skipTests>
</properties>
but in that case, Maven compile the tests but ...
2
votes
1answer
87 views
How to change java default icon of installer in java for mac installer
I have javafx application, I have successfully created the installer of application, but I want to change the java default icon of installer, So I have added
...
0
votes
1answer
70 views
change generated war name using maven jetty plugin
I am using maven Struts2 blank artifact to create my web application. Here is my pom.xml :-
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
1answer
61 views
How to pass multiple suiteXML files from command line
I am required to run multiple XML suite files from command line.
My POM.xml -
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
...
0
votes
0answers
77 views
No sub JAR or directory WEB-INF/classes
I have this POM file which I use to build WAB package:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
1
vote
1answer
31 views
How can I easily diff dependencies between two maven pom files?
My boss likes for the dependencies in a given maven pom file to be sorted by scope, group, and artifact ID. I've recently inherited a fair number of projects with a fair number of dependencies that ...
0
votes
1answer
70 views
How to include the JAR from another maven project in Maven
I have a fairly large project named: ProjectX. Inside this ProjectX folder we have a parent POM for the rest of the project. Project X has 2 Modules: ModuleA and ModuleB.
ModuleB is also a parent to ...
0
votes
0answers
15 views
does anyone have a sample pom and settings file used to site-deploy to confluence?
Please? I'm trying to use a maven build to deploy to Confluence site using the xml-rpc APi.
I'm having trouble finding the right protocal to use in distribution management. It is password protected. ...
0
votes
1answer
54 views
Create maven uberjar without including an internal pom file
I have a maven build setup but it has been requested that I make one change to the uberjar and that is to not include the pom file, because it messes up my clients subsequent build that uses my ...
0
votes
2answers
191 views
cannot set classpath with maven-assembly-plugin
I am creating console application. I want to have configuration files outside the jar file in conf folder and want to register this folder as a classpath for my application.
I run mvn assembly:single ...
0
votes
1answer
31 views
Adding a “project health” attribute to pom.xml for 3rd party dependency monitoring
I am working with an organisation that has a large set of projects, all managed by maven (with some custom plugins) and all with a pom.xml.
While most of the projects are developed internally, some ...
0
votes
0answers
88 views
Maven resources not getting copied in jar file
My maven project has a parent POM as well as three children POM.
My parent POM looks like this
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
0answers
41 views
Use make-maven plugin to make use of Makefile in pom.xml
I m trying to use Makefile to compile the source code, and create a RPM from those compiled files. m trying to use maven-rpm-plugin which is no problem but the issue is with make-maven plugin. is ...

