A tag for Maven plugins development related questions (not the use of specific plugins).
1
vote
1answer
80 views
Automatic Execution Custom Maven Plugin
I have implemented a Maven 2 plugin.
I have that definiton for my Mojo:
/**
* Goal which combines files.
*
* @goal combine
* @phase compile
*/
public class CombineMojo extends AbstractMojo {
...
1
vote
1answer
56 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
2answers
461 views
Eclipse : Maven search dependencies doen't work
I created a new simple Maven project in a new Workspace.
When I open the pom.xml's Dependencies view in Eclipse editor, and I choose Add.. dependency, there's no search results no matter what search ...
0
votes
2answers
135 views
Configuring maven for proxy
I am new to maven build tool but I am not able to configure maven for proxy server.
In the /usr/share/maven/settings.xml
I added the following lines:
<proxies>
<proxy>
...
7
votes
2answers
495 views
Maven Plugin Fork Process With Proper Classpath
I am creating a Maven plugin with a rather unique requirement for proper operation: it needs to spawn new processes of itself and then wait for those processes to complete a task.
While this is ...
-1
votes
1answer
139 views
How to add missing jars in Eclipse Maven based project
I am new to maven with eclipse. I am using m2e plugin(version 1.2.0).
i have imported maven project, it is showing build path errors due to some jars are missing.
How to add those jars to the build ...
1
vote
3answers
1k views
now getting 401 unauthorized in jenkins when deploying artifact to archiva maven repo
This used to work before I upgraded Jenkins to 1.494. Now I get this error in Jenkins when using the build promotion plugin to copy the war artifact to the snapshot repo:
ERROR: Failed to deploy ...
0
votes
3answers
110 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
...
1
vote
1answer
84 views
Editing jmeter saveservice.properties file using Jmeter Maven Plugin
Is there a way to edit(add some properties to it) the Jmeter saveservice.properties file when I am invoking Jmeter using the Jmeter Maven Plugin?
1
vote
2answers
33 views
Use directory name to group tests rather than annotation for Maven SureFire
I have TestNG tests that are grouped with the (groups = "unit") annotation as unit or integration and run using the following Maven config:
<plugin>
...
2
votes
1answer
199 views
Maven exec bash script and save output as property
I'm wondering if there exists a Maven plugin that runs a bash script and saves the results of it into a property.
My actual use case is to get the git source version. I found one plugin available ...
21
votes
2answers
458 views
How to support multiple Scala versions in a library
I have a fairly normal Scala project currently being built using Maven. I would like to support both Scala 2.9.x and the forthcoming 2.10, which is not binary or source compatible. I am willing to ...
1
vote
2answers
297 views
Maven complete surefire-report including passed tests logging events
I want to generate a report usinf surefire-report plugin of maven which will give me a detailed report of all the tests that were run with the log events that were logged during each test run instead ...
3
votes
3answers
1k views
jaxws-maven-plugin 2.2 Failure with NoSuchMethodError()
I am trying to use jaxws maven plugin to generate source for my web service client and getting following exception;
[ERROR] Failed to execute goal ...
0
votes
1answer
36 views
How to obtain project directory in a maven mojo?
I'm trying to enclose some legacy code in a maven plugin. The legacy code is writing its outputs in the OS current working directory. I want to move all that into the target dir. I.e. if my project ...
0
votes
1answer
38 views
How do I separate configuration for maven command line mojo invocation from global plugin configuration?
I'm using the cargo plugin to deploy my app to a remote server during the build. To do this, I have a configuration element for the cargo plugin. Since there are two executions that use this single ...
1
vote
2answers
38 views
Maven Category does not appear in Netbeans
I am going to start with GeoTools. Maven in installed correctly as cmd prompt says the version 3.0.4. But in Netbeans 6.5, Maven Category does not appear to create a new project. What should I go ...
0
votes
1answer
108 views
Get localhost:8080 instead of my_ip_address:8080 in wsdl2java
I am using axistools-maven-plugin
This is my xml content.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
...
0
votes
2answers
181 views
Maven eclipse plugin error Lorg/sonatype/plexus/build/incremental/BuildContext;
Can someone let me know how to fix the same?.I tried to create a new maven project and it fails for some reason
Description Resource Path Location Type
Execution default-resources of goal ...
2
votes
1answer
152 views
how to change configuration of maven war plugin from plugin management?
I am trying to figure out how to configure maven war plugin from parent poms plugin management.
Below are two sample poms. This way the war of child project is created with the version attached to the ...
3
votes
1answer
68 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>
...
2
votes
1answer
553 views
Exclude generated code in sonar
How to exclude generated code from sonar processing and/or reporting?
I tried to exclude **/*generated* but packages such as org.blayo.generated are still in report:
<reporting>
...
1
vote
1answer
275 views
xmlbeans-maven-plugin not finding javac
I am trying to setup xmlbeans-maven-plugin 2.3.3 in my Eclipse and while everything seems to go OK, It fails with an java.io.IOException due to inability to find the file ...
2
votes
1answer
201 views
Maven plugin java.library.path
The maven-surefire-plugin supports using the java.library.path property by means of the <argLine> configuration option.
I need to pass the java.library.path property to sql-maven-plugin (which ...
0
votes
2answers
112 views
Maven build to generate only changed artifact
In our project, Maven build generates artifacts for different modules i.e. jar, console, car etc in corresponding folder structure.
Everytime we check in the code, the build genarates full new ...
1
vote
1answer
203 views
mvn proguard: Is there possible obfuscate dependency before copying
I have plugins configuration like below:
<project>
...
<build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
1
vote
1answer
44 views
What is meant by plugin goal in Maven speak?
I am a newbie to Maven . I am reading up Maven - The complete reference and came across the term Plugin Goals under the Build settings category of a pom.xml file :
In this section, we customize ...
0
votes
2answers
43 views
Understanding the comman maven plugin code format
Browsing the maven-plugin source code (for example 'clean-plugin'), I came across verify.bsh file, which has contents as
import java.io.*;
import java.util.*;
import java.util.jar.*;
import ...
0
votes
0answers
48 views
How to deploy jars that are generated by maven xmlbeans plugin from 3 different xsd files
I am working on a project , where we would like to reduce the dependency between projects. One main project uses xmlbeans to generate java classes from already written xsd files and then construct ...
0
votes
1answer
156 views
Switching from Maven command line interface to Eclipse Plugin
I'm working on a project that is built using maven to weave in AspectJ annotations when compiling. Up until now, it worked like this:
1) Turn off "Build Automatically" in eclipse
2) Make changes to ...
0
votes
3answers
743 views
How to add environment variables to maven-jetty-plugin
I am using the maven jetty pluggin as follows:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
...
0
votes
2answers
314 views
exec-maven-plugin cannot be started before compile phase
I want to write addtional texts to the Java resource files (combine two .java files to one). And I write a python script to do so.
I also want to automate the steps (combines files, compile, ...
0
votes
1answer
326 views
Run Maven Tomcat 7 as exploded
How to run Maven tomcat7 as exploded? I 'm trying to run web application which read dynamic files form same context folder.
I have tried to use this :
mvn tomcat7:run
And put in some local file ...
3
votes
1answer
119 views
Cannot build a Hudson plugin using Maven
I cannot manage to build the Hudson plugin using Maven.
Here is my pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
121 views
Maven 3 plugin - How to programatically exclude a dependency and all its transitive dependencies?
I'm developing a Maven 3 plugin and I want to exclude some dependencies, and their transitive dependencies, when a configuration is set to true in the plugin.
I don't want to use <exclusions> ...
0
votes
0answers
272 views
Script to automate the maven release process with SVN source
I am usig a batch script to release my projetcs, it works fine for my common project, but when it comes for the actual main project which got a dependency to the common project, mvn release prepare is ...
0
votes
1answer
49 views
no any “plugin descriptor” founded in my maven project
I am wanting to create UI with qt-jambi, but i have a problem.
i am using maven in eclipse, and create a maven project, and i downloaded and installed 3rd party qt-jambi jar files in my local ...
0
votes
0answers
433 views
WSDL2Java Maven cxf-codegen-plugin returns proxy authentication error
I am using maven cxf-codegen-plugin to generate WSDL client stubs at the build time. The .m2 proxy settings are correct. It downloads all relevant maven dependencies. It gives following proxy ...
0
votes
0answers
87 views
Maven sql-maven-plugin & jTDS
I'm trying to use sql-maven-plugin with the jTDS driver:
This driver needs a dll (ntlmauth.dll)
<plugin>
<groupId>org.codehaus.mojo</groupId>
...
1
vote
1answer
161 views
Unable to download flexmojos plugin, maven ignores repositories config
I have Flex project and I need flexmojos-maven-plugin to build it.
<plugin>
<groupId>org.sonatype.flexmojos</groupId>
...
2
votes
0answers
66 views
findbugs in maven for single module
I want to run findbugs for a single module from my project. Updated the pom.xml like
http://mojo.codehaus.org/findbugs-maven-plugin/usage.html
< project>
[...]
< build>
[...]
< ...
0
votes
1answer
60 views
Resource Filtering with own plugin
Currently i develop my own plugin which will do resource filtering with loading of a an other file which influence the resource filtering.
I have the following code in my plugin (execute) method:
...
0
votes
2answers
43 views
Generating jar file using maven in db unit installation
I need to install db unit in my system. I have completed installing JDBC driver. i have downloaded junit-4.11.jar.
I have to generate the jar file into the directory.What is the correct method/step ...
1
vote
1answer
220 views
Not able to generate querydsl Q classes
I believe this question has been asked here for a while but there wasn't any accepted response. I've actually tried various tutorials but not getting them. I have a multi modules maven project. SO i ...
0
votes
1answer
93 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
2answers
131 views
MavenProject: Get the available classes for use on my plugin
I'm loading a Maven project as described here. I'm trying to figure out how I can retrieve the source roots so I can figure out the Java classes I have so my Mojo can use them.
I tried a couple of ...
0
votes
1answer
749 views
NetBeans 7.2: problems creating and running Maven WebApplications
In NetBeans 7.2, I get the following behavior:
1. Upon hitting the 'run (play)' button on an existing Maven Webapplication, the following error is displayed:
cd E:\Dev\Apps\MyApp; ...
0
votes
0answers
194 views
eclipse marketplace maven plug-in error downloading
I've recently installed a fresh and clean install of Eclipse Java EE Juno SR1 win32
Now I'm trying to install plug-ins from marketplace
Exactly 'Maven Integration for Eclipse WTP (Incubation) 0.16.0'
...
0
votes
0answers
28 views
What is the main purpose of the google.inject.Injector plugin feature?
I'm studying the source code of a desktop-app called Tomighty, and I keep seeing code that has this package at the top:
import com.google.inject.Injector;
then I see this code at the top:
@Inject ...
0
votes
1answer
109 views
third party bundles dependencies in Maven/Tycho build
how to handle third party bundles dependencies in Maven/Tycho build ?