A Project Object Model or POM is the fundamental unit of work in Maven.

learn more… | top users | synonyms (1)

0
votes
2answers
39 views

Modify pom.xml to include JDK compiler version

I wrote a maven code on netbeans that has approximately more than 2000 lines. When I compile it on netbeans, everything is fine, but if I want to run it on command line, I will get these errors: ...
0
votes
0answers
13 views

findbugs maven plugin site vs check

I'm just trying to wrap my head around a couple of things. If I have this in my masterpom: <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> ...
0
votes
0answers
6 views

Mojo schemagen maven plugin wrongly generates class

Good Morning everyone, I'm trying to use the mojo jaxb2 maven plugin in my application, however whenever the schema gets created properly, in the same folder it generates the whole classes (as a ...
0
votes
0answers
21 views

file aren't copied to WEB-INF/

When i run a clean install goals on maven, my spring-servlet.xml is not copied in my war. Well it's not exactly true, it copy it into MyApp.War/WEB-INF/Classes/spring-servlet.xml, i want it to be ...
0
votes
1answer
11 views

Warning POM missing in the jar

I have created the jar through maven from some other project. The jar reside in the location repository. The jar contains the pom.xml file in META-INF/maven///pom.xml and pom.properties. I have also ...
0
votes
1answer
18 views

Maven exporting pom.xml with jar plugin

I am adding attribute in the jar plugin to specify the location of jar file. But at that location maven is not exporting pom.xml file which is used in generating the jar. Can you please tell me how ...
0
votes
1answer
17 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
40 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
33 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
49 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
66 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
24 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
28 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
26 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
42 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
26 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
37 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
102 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
35 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
50 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
31 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
27 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
23 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
58 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
85 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
50 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
126 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
60 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
70 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
38 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
79 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
89 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
144 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
52 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
26 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
67 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
38 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
72 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
225 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
54 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
89 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
76 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
62 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
87 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
76 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 ...

1 2 3 4 5 16