2
votes
2answers
98 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 ...
1
vote
3answers
621 views

Maven - Why after “mvn clean” I need to execute “Maven Update Project” before “mvn package”?

I'm making some tests and I would like to understand why after execute the command "mvn clean" I need to execute "Maven > Update Project" before run "mvn package", otherwise I get a compilation error ...
1
vote
1answer
67 views

How to config Flex Mojos Unit test by maven

Like java I would like to perform unit test in maven flex mojo. but unable to perform unit test. Here is the pom file for your observation. <?xml version="1.0" encoding="UTF-8"?> <project ...
0
votes
3answers
123 views

Maven: Couldnt find Resource-Path after Compiling to executable Jar

today i compiled my maven projekt with help of the maven-assembly-plugin to a executable jar. however after doing this my jar file wasnt able to resolve the pathes. I added this to my pom.xml ...
3
votes
1answer
73 views

How to exclude a source from those under source root?

In my project's pom.xml I have section responsible for generating sources: <plugin> <groupId>org.apache.cxf</groupId> ...
0
votes
1answer
108 views

Calling java class under src/test from pom.xml

I know that we can call a java class from maven using the exec plugin and specifying the class in the mainClass tag. However this seems to work only when the java class is under src/main/java. ...
0
votes
0answers
8 views

NoClassDefinitionFoundError

I have ear wth ejb moudule, abc module(core java, it is not WAR or EJB jar). ejb moulde is dependent on abc moulde. in maven pom.xml of ejb ,i have specified module dependency as dependency groupId ...
1
vote
2answers
708 views

Maven cxf Plugin error

Why I'm seeing this error in my pom.xml file when I'm adding the apache cxf plugin Plugin execution not covered by lifecycle configuration: org.apache.cxf:cxf-codegen-plugin:2.5.4:wsdl2java ...
0
votes
1answer
253 views

PMD coulnd't find ruleset

I'm on creating a maven based java project, which contains the PMD maven plugin. I use my own rule set XML and it works like a charm, except two rule sets: the emptycode and the unnecessary: when I ...
0
votes
2answers
2k views

Reading properties file values into pom.xml

I've tried and follow this solution How to read an external properties file in Maven but with no luck. I would like to read an absolute path(/home/tomcat/lib) from a properties file(which is in the ...
1
vote
2answers
382 views

Maven pluginManagement configuration inheritance strange behavior

I'm using pluginManagement element in my parent pom.xml to configure plugins for all its children. For example, I have the following configuration: <pluginManagement> <plugin> ...
2
votes
3answers
1k views

How to generate .apklib and .apk in same maven build?

So I am using Android Maven Plugin to generate apklib snapshot for one of my library project. But the library project is also self sufficient to run on its own so I am thinking that may be we should ...
1
vote
2answers
254 views

install all jars in folder using maven-install-plugin

I have a folder lib in my project with some external jars. I am using maven-install-plugin to add these jars in to my local reposotory. However I need to create a seperate configuration for every jar ...
0
votes
1answer
132 views

versions-maven-plugin doesn't retrieve the latest version on nexus?

I am trying to use (partly successfully) the versions-maven-plugin to retrieve latest release/snapshot versions from my local and nexus repositories to update maven projects. When running this plugin ...
0
votes
1answer
1k views

Maven Invalid content was found starting with element 'packaging'

I am using an eclipse maven project with apache wicket. When I add wicket-examples dependency with tag to pom xml, I get an error : cvc-complex-type.2.4.a: Invalid content was found starting with ...
1
vote
4answers
4k views

how can i call testng.xml file from pom.xml in maven

i'm using selenium web Driver,eclipse,testng and surfire plugin. I am not able to run testng.xml file from pom.xml..While i'm running pom.xml using mvn test it directly run the file which is in the ...
0
votes
1answer
34 views

How can I copy a file even if my Build fails from POM

I want to copy a file from my source directory to another in verify Phase even if the build failed. Im able to copy the file using 'exec-maven-plugin' . But issue is , if a test failure happens, the ...
0
votes
1answer
237 views

maven2 using project.version and regex

I want to use project version value from pom.xml in my jsp. I managed to do this by using filters, for exemple <webResources> <resource> ...
0
votes
1answer
600 views

Maven plugin builds but can't execute due to java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

I am using the maven-jspc-plugin in my pom.xml. When i try to execute the jsp-compile goal (which executes the plugin) I get: Caused by: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at ...
0
votes
1answer
252 views

Deprecated code when using avro-maven-plugin version 1.6.1

I'm running a java code using Apache Avro. Some code gets deprecated in the java file and I'm not sure why. I'm using Maven to run my Java program. This is the java file public class ...
1
vote
3answers
698 views

Maven - special charecters in property name inside a pom

I'm using the maven-properties-plugin to write my properties to file in order to be used by a third party application. I would like to include a special character '$' in the property name. For ...
3
votes
2answers
5k views

Couldn't run build using Maven because of an error in pom.xml

I am trying to build a new Maven project in Eclipse. In my pom.xml, I got an error which says Multiple annotations found at this line: - Missing artifact ...
5
votes
4answers
4k views

Maven failure to find maven-plugins:maven-cobertura-plugin

I try to compile maven web project with <dependency> <groupId>org.springframework.ws</groupId> <artifactId>spring-ws</artifactId> ...
1
vote
1answer
435 views

Maven plugin configuration in the multi module project

I'm working on the multi module project. I want to run my plugin after build for one of the modules. This mojo should be only run directly from CLI and can not be attached to the phase as on some ...
2
votes
1answer
956 views

Running a maven plugin only in the parent

I've created a maven plugin to start, clean and stop a database. My project exists of a pom file with 4 modules: <modules> <module>infrastructure</module> ...
0
votes
2answers
269 views

Choosing dependency version in maven and maven plugin

I have a maven plugin which is using hsqldb 1.8.0.10. In my pom.xml from the plugin, it is declared like this: <dependency> <groupId>hsqldb</groupId> ...
1
vote
2answers
745 views

Cannot find class from jar in maven plugin

I'm making a maven plugin to start, stop and clear a database. I'm using hsqldb for it. I have a class (called ServerStart) to start the database: import java.io.File; import java.sql.Connection; ...
1
vote
2answers
3k views

maven-install-plugin: installing submodule jar files

I have an aggregation project with a half-dozen submodules. The builds all work but when I try mvn install:install-file I only get the top-level pom. I've also tried mvn install:install I get the ...
1
vote
2answers
1k views

How can I clean _svn folders/files from 'src/main/webapp' folder when maven2 builds webapp project in netbeans 6.7?

I have created a webapp using maven2 archetype in netbeans 6.7. when I do plain build(removing all the plugin configuration), it copies all the required files including the '_svn' folders. But I ...
1
vote
1answer
727 views

How do I exclude files/directories from the target directory using the maven war plugin?

I followed the instructions here, and it worked but only if it was mapped to a directory other than the default. Here's a sample that I tried: <configuration> <webResources> ...