Tagged Questions
1
vote
1answer
15 views
How to set the default-value for a maven array parameter?
I have a parameter in my custom plugin that is an array. If the parameter isn't given anything, I want to set the default-value to be a blank array. Of course, here is the normal syntax for a regular ...
1
vote
1answer
38 views
When making a custom Maven plugin, which comes first, execute() or parameters?
So I have a custom maven plugin that has some parameters that I use as global variables. Like so:
/**
* Parameter used keep the name of a file
* @parameter expression="${filename}" @require
*/
...
1
vote
1answer
50 views
How can I programmatically add an Artifact to the MavenProject?
I am writing a Maven plugin and I would like to automatically resolve specific dependencies and add them as dependencies to the project based on the parameters given to the plugin.
I have been able ...
1
vote
1answer
51 views
Custom Maven Plugin: how to add classpaths?
I'm creating a custom plugin for maven. Normally, when you run a normal Java program that depends on some .jar files, you put it in the command line as a classpath. In my plugin, there are some things ...
0
votes
1answer
69 views
Maven Custom Plugin Descriptor
I'm Trying to create a Maven Plugin, but if i use @Mojo annotation i've to create a mojo descriptor with maven plugin-plugin already when i use java doc without the new maven plugin annotation the ...
2
votes
1answer
88 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
96 views
jaxb2 maven plugin, define multiple schema files in separate tags
I'm using maven jaxb2 plugin to generate Java classes from xsd files. Recently i faced problem, my schema files list geting really long, and I wrote all of them down in shemaFiles tag as comma ...
1
vote
0answers
86 views
component lookup exception with org.apache.maven.repository.RepositorySystem in Maven plugin testing
I'm trying to use maven-plugin-testing-harness version 2.1 with the following test case:
public class FooTest extends AbstractMojoTestCase {
@Override
protected void setUp() throws Exception {
...
0
votes
1answer
96 views
How to compile Java Enum in Maven?
Most recently I am working with maven 3.x, Eclipse JNO JavaEE IDE with JDK 1.6.0_26. Some where in my project I used enum both inside and outside of a class. When I run clean build it appear an error
...
0
votes
1answer
91 views
Maven Shade Plugin for Java 7 UberJar
My question is simple: is there a version of the Maven-shade-plugin that is compatible with Java version 7? Specifically, when I attempt to use this plugin I get the following error (using Netbeans ...
0
votes
0answers
53 views
Manage aggressive caching using URL fingerprinting in a Java/Maven way
I'm trying to find the best solution to manage browser cache to reload modified JavaScript/CSS resources in a Java/Maven project.
The most widespread solution seems be Maven filtering to add a ...
0
votes
1answer
37 views
maven filtering API in MOJO
I try to develop a maven plugin with resource filtering.
In my code i have this :
Resource file = new Resource();
file.setDirectory(buildDir.getAbsolutePath());
file.addInclude("appcfg.xml");
...
-2
votes
1answer
52 views
app engine with maven plugin webapp live class/jsp reloading [closed]
Is there currently a way to achieve application class/jsp file reload while the server is running?
I'm using maven plugin 1.7.5.
1
vote
1answer
172 views
Deploy with maven plugin on remote weblogic 12c
I have weblogic 12c on machine 192.168.1.3. I want to deploy ear from machine 192.168.1.2 with maven plugin:
<groupId>com.oracle.weblogic</groupId>
...
1
vote
1answer
49 views
Mavenizing legacy projects with custom packaging type [duplicate]
I have some legacy eclipse projects that should not be changed and some newer projects that could be ported to maven projects.
I would like to port these newer projects now to maven projects, but ...
3
votes
1answer
102 views
Maven class post-processing
I developed a maven plugin with @aggregator annotation.
If I run
mvn clean compile my:artifact:task package
then it compiles 2 times.
So I insert this fragment into my pom
<plugin>
...
0
votes
2answers
41 views
Arranging Profiles and Plugins in pom.xml
I have these things in my pom.xml
profile1
profile2
These profiles are for separate build environment.
I need to make these plugins as common to both profiles.
plugin1
plugin2
plugin3
Where ...
0
votes
1answer
117 views
jslint-maven-plugin doesn't read jsSourceFolder and still reads default value
I'm trying to use jslint maven plugin. I included this in my pom file
<plugin>
<groupId>org.codehaus.mojo</groupId>
...
0
votes
4answers
68 views
How to create a project from maven in eclipse
I've installed the m2e plugin in Eclipse. I'm trying to download the source and dependencies of MG4J and use it in my project. In the upper-right corner there's a Maven link. However, I don't know ...
1
vote
2answers
227 views
Why maven command mvn sonar:sonar works without any plugin configuration in my POM.xml?
I have a maven web project in my repo.
I am a maven noob but still I understand the fact that there are plugins which we need to configure only then we could run plugin specific commands.
Facts :-
...
0
votes
1answer
72 views
Where Maven Assembly Plugin Reads Static HTML Files From Under Target
I have a project that has maven assembly plugin dependency at its pom.xml. It runs at package phase. I have developed a custom maven plugin that runs before package phase. I have a web application and ...
4
votes
1answer
108 views
Create Apklib for building with maven
I have Android project A which refers Android library project B, Building Project A on eclipse works fine. But my app using some system API so I thought to build using maven. I am not getting how to ...
0
votes
1answer
64 views
mvn:deploy can not invoke tomcat manager
I am using mvn2, when I am trying to deploy my project using mvn:deploy command I am having error can not invoke Tomcat manager connection refused: connect below is my pom configuration
...
9
votes
2answers
251 views
How to read maven settings in .m2/settings.xml file from plugin
Three questions in decreasing order of importance - Links will do.
I need to read certain maven settings such as proxies, servers in my maven plugin. How do I read them from my plugin. I can read ...
3
votes
1answer
269 views
Using Java 7 with official Google Appengine Maven plugin
I'm having trouble using the official Maven Plugin and Java 7 with Google Appengine.
Configuration
My project configuration pom.xml is quite simple:
In the properties section I configure:
...
4
votes
1answer
132 views
Can a Maven plugin see the “configuration” tag from an “execution” section automatically?
I'm analyzing a Maven plugin that I can configure inside the configuration section of plugin:
<plugin>
...
<executions>...</executions>
<configuration>
...
4
votes
2answers
589 views
Why can Maven not find my custom Mojo?
I have an own Mojo class.
@Mojo(name="mojo", threadSafe=true)
public class MyMojo extends AbstractMojo
{
@Component
private MavenProject project;
public void execute() throws ...
0
votes
2answers
210 views
how to use jaxb2 maven plugin with inline XSD?
I am trying to generate marshalling and unmarshalling objects using maven jaxb2 plugin.
But I dont have the .xsd file for the .wsdl.
the schema definition is inline.
Please let me know how to proceed ...
2
votes
1answer
736 views
jaxws-maven-plugin resolving WSDL location relative to class location, why?
I'm using the jaxws-maven-plugin version 2.1. I've found out very strange code generated for WSDL location from jar resources:
<configuration>
...
0
votes
1answer
33 views
Can I use compiled class in Maven Plugin?
I'm writing a Maven plugin which has to use the project's compiled classes but are they include to classpath after compilation or i've to load them ?
1
vote
1answer
76 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 {
...
0
votes
3answers
105 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
2answers
32 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
534 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
199 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>
...
0
votes
0answers
120 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
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 ...
0
votes
0answers
27 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
165 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 ...
1
vote
1answer
145 views
wsimport generate a client with cookies
I'm generating a client for a SOAP 1.2 service using wsimport from the jaxws-maven-plugin in maven with the following execution:
<groupId>org.jvnet.jax-ws-commons</groupId>
...
1
vote
1answer
120 views
Is this the correct way to enforce a specific Spring version using the enforcer plugin?
I wish to enforce a specific Spring version (3.1.2) using the maven-enforcer plugin's bannedDependencies rule.
Is this the correct way to configure the enforcer plugin to achieve that ?
...
0
votes
1answer
326 views
NoClassDefFoundError JIRA REST API
I am new to JIRA I downloaded m2e plugin for eclipse Indigo and JIRA 5.0 version
public class JIRAClient {
public static void main(String[] args) throws URISyntaxException {
...
0
votes
1answer
423 views
How to suppress PMD warnings during a Maven install
I have a Java project that is built using Maven, thus my build process is defined in the pom.xml file of the project. My development team uses a variety of plugins to check the quality of our source ...
3
votes
1answer
89 views
ODBC connection through Flyway
I am trying to use maven/flyway for database versioning through ODBC.
I am using sql server localdb as the database. But I am getting the following error when I don't give a userid/password when I ...
0
votes
0answers
301 views
CXF ignores sourceRoot configuration parameter
I'm using CXF maven plugin to generate Java classes from wsdl
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
...
1
vote
1answer
51 views
Extracting runtime maven information
I would like to write a plugin that will extract maven's runtime information such as execution "Total Time", The maven command line used by the user, etc...
Anyone has an idea how to do that?
...
0
votes
1answer
782 views
Found interface com.google.gwt.core.ext.typeinfo.JClassType, but class was expected
I try to run some legacy project using maven with gwt-maven-plugin. I have the following error Found interface com.google.gwt.core.ext.typeinfo.JClassType, but class was expected. I was searching a ...
2
votes
1answer
109 views
Maven plugin development: goal dependency
It's vary hard to find proper search query for my question so I hope it's not a duplicate.
I'm developing maven plugin with few goals. I'd like to combine two of them in the chain (lifecycle?). ...
7
votes
3answers
668 views
Maven: Where to put generated resources for tomcat-maven-plugin?
I have CSS and JavaScript files in src/main/webapp directory of my project.
I want to join add joined and minified version of these resources to my WAR file and to the place where tomcat-maven-plugin ...
0
votes
1answer
258 views
Problems running JBehave with Maven
I am trying to get a JBehave story to execute in Maven it is completely ignoring the JBehave plugin. I've spent several hours using different configurations but it looks like the plugin isn't being ...


