Javascript code can be tough to maintain.
I am looking for tools that will help me ensure a reasonable quality level.
So far I have found JsUNit, a very nice unit ... |
My particular use case is using the wsimport goal (which basically maps to the jaxws wsimport.sh tool) to generate java code from wsdl. Looking for ideas on how others have ... |
Can someone please recommend a GOOD online tutorial for writing maven2 plugins?
I looked at about 5 tutorials yesterday and each skipped steps, didn't tell you where key components (referenced ... |
I'm trying to create a new plugin to package my latest project. I'm trying to have this plugin depend on the maven-dependency-plugin to copy all my projects dependencies.
I've added this ... |
In the included configuration, does the "stop-jetty" execution inherit any configuration information from the outer "configuration" element? Will stopPort be 9999 in the "stop-jetty" execution even if I omit it from ... |
I want to autogenerate some java classes from interfaces. My first thought was to write a code generator, and integrate it as a maven plugin.
I was thinking of creating a maven ... |
I'm trying to make a maven plugin that needs to use reflection. I want a project to run the plugin, and give it the full name of a class in the ... |
|
Can I make a single maven project that can be included as a dependency (to reference Java classes inside) and executed as a plugin?
I'm working on a library to help with ... |
Is there a Maven Plugin that will automatically generate setters and getters with the corresponding JavaDocs?
I am aware that Eclipse/Netbeans will do this when you tell it to; however, it ... |
I am pretty new to maven.
Is there any plugin or packaging type suitable for building application client jar file ?
I want to add the application-client.xml file to the META-INF folder ... |
I need to setup Maven plugins. I have downloaded the JARs. Can anyone please tell me what do I do next in order to integrate or setup the plugins with Maven?
Should ... |
I have a plugin that uses the Plexus Commandline to invoke some external process and capture the output. One of the arguments is in a funny format with spaces and quotes, ... |
I'm writing a maven plugin that has a parameter that's a String[].
Like this:
/**
* @parameter expression="${args}"
*/
protected String[] args;
This can be utilized through the POM like this:
<args>
<arg>arg1</arg>
<arg>arg2</arg>
<args>
But I want ... |
I'm looking for a plugin that will aggregate various reports from our maven project (which consists of many modules).
I was using dashboard maven plugin but it doesn't seem to be ... |
I'm writing a Maven plugin (Mojo) that needs to execute a standard set of other plugin executions before it is run.
Is there a mechanism to declare all the goals within my ... |
I have parent pom which configures certain plugins
<pluginManagement>
</plugins>
<plugin>
<artifactId>gmaven-plugin</artifactId>
...
|
I have a number of maven projects which build various components of a plugin framework for a 3rd party application. I have a master project which, using aggregation (<modules> element), includes ... |
Does anyone knows maven plugin that validate xml documents against DTD or Schema and generates reports?
|
I would like to make my plugin require a license to run similar to the maven clover plugin. Is there some utility out there that I can generate licenses with ... |
Does anyone know if there is an Ice grid plugin for Maven2?
Currently I will have to call an Ant task from Maven as follows:
http://maven.apache.org/plugins/maven-antrun-plugin/usage.html
|
Our project is based on J2EE and we would like to know if there is a open source maven-plugin which either integrates with cloc (Refer http://stackoverflow.com/questions/1353631/source-code-statistics) or other tools?
|
Is there a mechanism to track maven plugin version updates automatically. Since most of the time in dependencyManagement you hard-wire the version numbers for every plugin. Is there an administrative command ... |
I have a project that is using several profiles. Each profile uses following plugins:
- maven-compiler-plugin
- maven-resources-plugin
- maven-antrun-plugin
- maven-surefire-plugin
- maven-war-plugin
The one marked in bold is however the only plugin where there is a difference between the profiles ... |
We are just moving to Maven, and I understand there is a world of different plugins & extensions. Which are the best ones you recommend for general usage?
(On plugin per answer ... |
that is not available on public repository. Why or for what purpose did you write it?
|
I'm looking for information about how to write unit tests for Maven plugins. Although there's a page on the Maven site about this topic, there's only one example unit ... |
I'm trying to use the animal sniffer Maven plugin to verify that code is compatible with JDK1.4. The following configuration works:
<plugin>
<groupId>org.jvnet</groupId>
<artifactId>animal-sniffer</artifactId>
...
|
We have our local Maven repository which was working fine till yesterday.
Today we are getting the following error while building any project.
Failed to load late-bound plugin: org.apache.maven.plugins:maven-resources-plugin
We haven't change any settings. ... |
Is it possible to execute a plugin from a plugin? For instance, if I want to programmatically call another plugin from within a plugin, not via static XML.
Is this possible, ... |
I'm developing a Maven plugin that will have provide 5 goals. You can either execute goals 1-4 individually, or execute goal5, which will execute goals 1-4 in sequence. I've been looking ... |
Is there an easy way to download all the official Maven plugins (http://maven.apache.org/plugins/index.html) with one command?
I'm setting up an offline repository for use within a corporate environment and I wanted to ... |
Possible Duplicate:
Best “General Purpose” Maven plugins
Which are some of the most useful (and maybe not so well-known) maven plugins that you've used? Time and ... |
From what I can find there is no specific maven plugin for WAS 7, so I am wondering if the was6-maven-plugin will work with the newer version of the server.
|
I'm trying to validate my XML resources during maven build cycle. Is there any plugin for this purpose, or I should use ant + xmllint manually?
|
I'm using maven-minify-plugin. It can produce only one output file. I need to produce two minified js files. One from one set of files, the other from another set of files.
Can ... |
I am trying to create an rpm package with the help of the rpm-maven-plugin.
All goes well until I try to have it generate the %pre scriptlet (or any scriptlet for that ... |
I try to run some fitnesse fixtures (slim) within our build system (eclipse with maven). To run the tests within the IDE I'm trying to do this with the trinidad plugin. ... |
I'm trying to find a maven plugin that sends a HTTP request to the URL specified, parses response against some regular expression, and fails build if the matching fails. Do you ... |
Do you know a maven plugin to convert at buildtime tabs to spaces in source files ?
(as in AnyEdit Eclipse Plugin)
|
I recently asked about a maven like tool for other languages but there hasn't been any responses (except for a few upvotes :). Given that, I've decided that maybe using ... |
could please anybody explain how the Core Classloader is loading resources when for instance surefire test plugin is used?
What I'd especially need to know is the order in ... |
I've been given the task of speeding up a large maven build, and while I've worked with Ant quite a bit I'm new to Maven.
Looking through the various pom.xml files I ... |
I've looked and I can't seem to find a standalone maven plugin that one could use to generate files with Maven.
I've seen a couple of projects that look like they ... |
i m using maven-jetty-plugin for my integration test, and it kept complaining
java.lang.ClassNotFoundException: org.slf4j.Logger
i tried search for the war file in my target folder, in WEB-INF/lib folder no slf4j-api-XX.jar was found ... |
For Apache Maven I have found a izpack plugin and a NSIS plugin (for Win32).
Are there other Maven plugins available which allow to create software installers ... |
I have developed few Maven plugins for Maven 2, but I am wondering what are the main changes when I want to develop a plugin (or migrate the existing ones) for ... |
I am doing a JGoodies GUI application using maven. The program successfully run on any idea, but when I created executible jar file with dependencies, jar file is also created successfully ... |
I'm trying to setup my project so that I can use querydsl-sql against a MySQL database.
I'd like to get the classes and generate the classes using maven and am having problems ... |
I am looking for source code for a complete application that uses the Webstart Maven Plugin.
Any ideas?
|
In my pom.xml I have:
<scm>
<connection>scm:perforce://path_to_my_repository</connection>
</scm>
This has worked fine until recently. Now when I build I receive the following message:
"password is required for the perforce scm plugin."
The ... |
Where can I find a complete example of a Maven plugin written for maven-plugin-api 3.0? Preferably with unit and integration tests.
|
I've developed a Maven reporting plugin for internal use at our company. It's designed to work in standalone mode so that it can be run against a given project without ... |
I have some Maven plugins configured in my pom.xml. I only want to execute these plugins if the tests are being run (tests may be skipped using either -Dmaven.test.skip=true or -DskipTests).
One ... |
Is it possible to access content of user settings.xml file from a maven plugin Mojo ?
And if so, how ?
I would like to alter this file in order to put in ... |
I'm trying to develop Maven-3 reporting plugin that will have an aggregate option. When this option is set to true the plugin has collect data from sub-modules and build a report ... |
Is it also in the .M2\repository?
|
For example, does maven compiler plugin simply start a process to execute javac command when executing?
|
I am trying to develope a Apache Geronimo 2.2.1 plugin, and need to use Maven 3.0 to build it.
I have used these two documentations to get started with developing plugins:
|
Is it possible to have a plugin depend on the classes of the local project (after the compile phase, of course)?
In other words, can I add ./target/classes to the classpath of ... |
When I use maven datanucleus plugin. When I run "mvn datanucleus:schema-create", the following exception happens. Does anyone know what's wrong?
ERROR] BUILD ERROR
INFO] ------------------------------------------------------------------------
INFO] The DataNucleus tool org.datanucleus.store.rdbms.SchemaTool exited with a
non-null exit ... |
I created a Maven plugin able to generate changelogs and various other information from a project's Git repository. It's called Mavanagaiata and is available from Maven Central (and the ... |
I want to execute Custom Maven plugin after clicking on custom button in TeamCity. Does anybody has any solution? Please help me.
|
Is there a way to have the Maven JarJar plugin exclude items in the 'provided' scope? This seems pretty straightforward... if something is provided, why would I want to include it ... |
I am now trying to use oracle weblogic maven plugin to deploy an application to an admin server with administration port.
I am using t3s protocol to connect but I am wondering ... |
I have one Maven module responsible with building some docs out of several other modules (wars). All works fine -> at build i combine several plugins like javadoc, wadl, assembly, etc. ... |
Similar to this question, I can't do a glassfish deploy because some server in Australia is down at the moment. I've had the artifacts cached locally for months.
How can I ... |
Is there a maven plugin that executes other maven plugins? I swear there was one and now I can not find it.
Thanks!
|
Normally I would just go to the java.net site and look up what the error code I am getting is about but their web site is currently offline. Basically I am ... |
I am looking for a java obfuscator with maven-plugin support? We tried using ProGuard but we ran into some runtime issues which doesn't happen if you don't obfuscate. Are there any ... |
I guess i am missing something.. I want to make a release of my project. I added maven-release-plugin to my pom. In addition, i have another source code dir aside ...
|
Facing issue when try to fix corrupted plugin to rebuild. giving error as below.
Using- Sonatype Nexus™ Open Source Edition, Version: 1.8.0.1
========================================================================
Caused by: org.apache.maven.plugin.version.PluginVersionNotFoundException: The plugin 'org.apache.maven.plugins:maven-enforcer-plugin' does not ...
|
I'd like to use the maven enforcer plugin to check to see if I have duplicate classes on my path. I've tried the example from here.
But when I run ... |
I've been using maven for quite some time (years), so it's surprising to me that I've never come across this issue before, or at least have some way of dealing with ... |
AFAIK, the maven failsafe plugin fails safe because it has separate goals for running the tests and failing the build based on the tests. These are designed to be bound ... |
I am fairly new to Maven; read a few tutorials for a day and have written a custom plugin which does what I want it to do. The plugin that I ... |
I started using the maven ear plugin about 12 months ago and want to find out if there are any alternatives. One of the benefits of Maven is the dependency management ... |
Currently i am using liquibase maven plugin for database changes and my database credentials are in plain text format in .m2/settings.xml.
By using mavens password encryption, i want to encrypt database ... |
How do I make Maven generate a list of all of the plugins that it recognizes?
|
My issue is pretty easy : I tried to compile an c standalone project for my companie. For that need, i installed the native maven plugin. In output, i expect ... |
I've been trying to write my own maven reporting plugin to generate info about tests when running 'mvn site'. The
file test_report.html is created by the code below, but the page does ... |
I have just tried to use the wro4j maven plugin to get my js checked using jshint on build time.
I have configure the options used by jshint, and the console lists ... |
I've have some java code that starts a web server and listens for requests. I'd like to start the web server from a custom maven plugin goal.
This works fine (starts ... |
I am trying to follow this link:
http://maven.apache.org/plugins/maven-shade-plugin/examples.html
I am new to Maven. I feel a bit out of depth trying to follow the example.
I am able to get Quartz Scheduler ... |
In pom.xml I have declaration like this
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
|
In my maven plugin I have the following:
<dependencySets>
<dependencySet>
...
|
Are there any maven plugins that will search for artifacts? By artifactId would be great.
Ideally, I'd like to be able to plugin in artifactId and have it come back with full ... |
I have an application which has legacy Struts actions extending org.apache.struts.StrutsActions. I would like to be sure that all my classes which are extending StrutsActions have a custom annotation.
In order ... |
I have a maven multi-module project (boy, I've written that opening way too many times on this site). Almost all the modules (that is, the ones that have code in ... |
I need to execute the same maven plugin more than once in the same phase.
What I want:
- Execute maven-assembly-plugin
- Execute myplugin (depends on step 1)
- Execute maven-assembly-plugin again (depends on step 2)
- Execute myplugin again ...
|
I have a projet in c# .net.
I need to hook the "pre build" event so I can run a c# class that will generate other c# class to the same project.
I ... |
Is there some aggregated list of Maven plugins?
Or at least list of lists.
|
[ERROR] No plugin found for prefix 'maven-rar-plugin' in the current project and in the plugin groups [org.apache.maven.plugins, org.co
dehaus.mojo] available from the repositories [local (D:\sunguo\.m2\repository), central (http://repo1.maven.org/maven2)] -> ...
|
I am trying to use the maven Launch4j plugin version 1.5.0.1
When I build the pom on my windows box, there is no issue (my windows box has both 32-bit and 64-bit ... |
I am using a code generation plugin (maven-jnaerator-plugin) in a multi-module (aggregator) maven project. Two of the modules need to run the code generation. However, only the first module ... |
I need to transform some xml into html and pdf formats as part of a maven build and am just wondering what plugins people are using out there?
|
In my maven pom I need to run two reporting plugins and a build plugin but in this order:
reporting plugin 1 (changelog)
build plugin ... |
|
Hi, I am not an expert on maven but since today the first version of the new maven implementation of the plugins sdk (with ext and hook) was released i wanna give this a try and some feed back to the author... I downloaded the file from here: https://github.com/mikakoivisto/liferay-maven-incubation/ Installation of the archetypes worked quite well but everything seems to be ... |
The basic conflict we have is that our web proxy doesn't allow us to download .jar files with the regular servers. I can download .jar files only on a special reserved connection on a laptop off our regular LAN. The machine I'm trying to install on is behind such a restriction. And, of course, Maven hates not being allowed to download ... |
My experience is limited to Maven 1, where I learned (from examining other plugins) that a plugin's own classpath is separate from the dependency classpath. I had to look at some of the other plugins -- AOP, I think -- to see examples where the plugin accessed the dependency classpath. I would suspect that Maven 2 also maintains separate classpaths, and ... |