Search 5,000,000+ questions and answers.

Frequently Asked Questions

Where can I get the Maven 2 plugin for Eclipse?

FAQs-1 - Maven User - Codehaus
lt;plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <outputEncoding>UTF-8</outputEncoding> </configuration> </plugin> MAVEN_OPTS="-Xmx512m -Xms512m -Dfile.encoding=ISO-8859-1" (mx/ms not mandatory for m2 but for m1). LANG=en_US.ISO8859-15
Related Questions

How to replace "attainGoal" in maven 1 with plugin in maven 2?

FAQs - Maven User - Codehaus
I would like to write up a plugin that have multiple goals. Does anyone have some samples that can share? Basically, a sample goal that compiles the source and another one that packages it as a WAR would be sufficient. Please help and thanks in advance The way to 'call goals' in maven 2 is using plugin. I think what you should do is write a plugin that comprises of other plugins (goals) that you wish to call with their respective phase.
Related Questions

How do I implement "maven.jar.override" of Maven 1 with Maven 2?

FAQs-1 - Maven User - Codehaus
How do I determine my project's transitive dependencies, and if needed, exclude a particular transitive dependency? If two versions of the same dependency are at the same depth, how do you know or predict which version will be used? How do I specify that all web modules will inherit the group's common files from a parent web module? What does the "ERROR Cannot override read-only parameter < parameter_name>" message, when running mean? What does the FATAL ERROR with .
Related Questions

Who is Maven?

Maven Health and Wellness - Frequently Asked Questions
Below is a list of frequently asked questions and our answers. These questions are based on those that have come up most often in our contact with our treatment clients. Please contact us with any other questions you may have.
Related Questions

Why there are no dependency properties in Maven 2?

FAQs-1 - Maven User - Codehaus
They were removed because they aren't reliable in a transitive environment. It implies that the dependency knows something about the environment of the dependee, which is back to front. In most cases, granted, the value for war bundle will be the same for a particular In the end, we give control to the actual POM doing the building, trying to use sensible defaults that minimise what needs to be The scope you should use for this is provided.
Related Questions

How do I install the Eclipse plugin?

Lattix Product FAQ
If you used lat_inst.exe to install on Windows, the installation will ask you for the Eclipse directory. If you installed using lattix.tgz you must download the Eclipse plugin file LattixEclipsePlugin.zip. Extract files from the zip into the Eclipse plugin directory. The installation is complete. This happens because the class path is not setup correctly. The most common cause for this is that the Java Run Time (JRE) is not installed.
Related Questions

What is the Geronimo Eclipse Plugin?

Geronimo Eclipse Plugin FAQ
The Geronimo Eclipse plugin provides a server adapter and other Geronimo development specific features that is built on the Web Tools Platform. The primary usage scenario for the plugin allows users to develop, build, and test application and services for the Geronimo Application Server.
Related Questions

How do I build the Geronimo Eclipse Plugin?

Geronimo Eclipse Plugin FAQ
The following environment variable needs be set to properly configure the JVM to meet memory requirements. On Windows use the following command to set the environment variable (note that double quotes should not be used): To build the latest source (assuming you have maven2, ant, and subversion installed) invoke the following to check out the source of trunk: Then, from within the geronimo-eclipse directory, simply invoke "mvn".
Related Questions

Where are the eclipse plugin dependencies?

Geronimo Eclipse Plugin FAQ
Since the eclipse platform, and other required top level Eclipse projects do not publish each plugin independently to a remote maven repository, the maven build process pulls down full distributions of these required projects, unzips them to create a "target-platform". This is done intelligently so that the target platform is not generated on every build and only if required versions of the Eclipse projects have changed, or if the "target-platform" has been altered.
Related Questions

How do I convert my <reports> from Maven 1 to Maven 2?

FAQs-1 - Maven User - Codehaus
lt;project> ... <reports> <report>maven-checkstyle-plugin</report> <report>maven-pmd-plugin</report> </reports> </project> lt;project> ... <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <!-- put your config here --> </configuration> </plugin> <plugin> <groupId>org.apache.maven.
Related Questions

How do I configure the equivalent of maven.war.src of war plugin in Maven 2.0?

FAQs-1 - Maven User - Codehaus
lt;build> ... <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <warSourceDirectory><!-- put the path of the directory --></warSourceDirectory> </configuration> </plugin> </plugins> ... </build> See http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html for other configurable properties of the war plugin.
Related Questions

How do I setup the classpath of my antrun plugin to use the classpath from maven?

FAQs-1 - Maven User - Codehaus
The maven classpaths are available as ant references when running your ant script. The ant reference names and some examples can be found here: maven-antrun-plugin
Related Questions

How can I use Ant tasks in Maven 2?

FAQs-1 - Maven User - Codehaus
For use in a plugin written in Java, Beanshell or other Java-like scripting language, you can construct the Ant tasks using the instructions given in the Ant documentation If you have very small amounts of Ant script specific to your project, you can use the AntRun plugin.
Related Questions

How does maven 2 implement reproducibility?

FAQs-1 - Maven User - Codehaus
Make use of ibiblio for your libraries. This should always be the case for jars. (The group is working on stabilising metadata and techniques for locking it down even if it changes. An internal repository mirror that doesn't fetch updates (only new) is recommended for true reproducibility.)
Related Questions

How to configure Maven 2 build?

TeamCity FAQ - Confluence
No additional configuration on the agent side is needed to run Maven 2 builds. A snapshot version of Maven 2.1 is distributed as an agent plugin (just like bundled Ant 1.6.5) pomLocation- the directory where the pom.xml file is located. In the example the "%build.working.dir%" macro is used, that is substituted with the real directory path on the concrete agent machine. Alternatevely, if there is a separate Maven 2.1.
Related Questions

I've just created a maven plugin. Is there a sample plugin integration test I can use?

FAQs-1 - Maven User - Codehaus
Each integration test is a separate project. For a plugin, you may want to create a project that will use your plugin and probably put it inside src/test/projects like maven-antrun-plugin, maven-eclipse-plugin, maven-javadoc-plugin and several others. These plugins can be found here: https://svn.apache.org/repos/asf/maven/plugins/trunk If the plugin in the snapshot repo (http://snapshots.maven.codehaus.org/maven2) is not yet updated.
Related Questions

How do I specify which output folders the Eclipse plugin puts into the .classpath file?

FAQs-1 - Maven User - Codehaus
lt;build> ... <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <outputDirectory>target-eclipse</outputDirectory> </configuration> </plugin> </plugins> </pluginManagement> ... </build>
Related Questions

How do I set the license for the LDM plugin for Eclipse?

Lattix Product FAQ
In Eclipse select the project and right click on the project in Package Explorer. Choose the Lattix->License menu item and enter user and key into the license dialog. You can also set the license by bringing up the preferences dialog from Window->Preferences and going to the preferences for Lattix LDM.
Related Questions

I've just created a maven plugin. Is there a sample plugin integration test I can use?

Each integration test is a separate project. For a plugin, you may want to create a project that will use your plugin and probably put it inside src/test/projects like maven-antrun-plugin, maven-eclipse-plugin, maven-javadoc-plugin and several others. These plugins can be found here: https://svn.apache.org/repos/asf/maven/plugins/trunk If the plugin in the snapshot repo ( http://snapshots.maven.codehaus.org/maven2 ) is not yet updated.
Related Questions

top] How can I use Ant tasks in Maven 2?

Maven - Frequently Asked Technical Questions
For use in a plugin written in Java, Beanshell or other Java-like scripting language, you can construct the Ant tasks using the instructions given in the Ant documentation If you have very small amounts of Ant script specific to your project, you can use the AntRun plugin.
Related Questions

Is Wicket available in the central Maven 2 repository?

FAQs
Yes, it is. However, we must rely on the Maven project to update their repository with the latest releases, resulting in some lag. If you need them hot and fresh, you can use the wicket-stuff's Maven 2 repository by adding the the following to your project's pom.xml: lt;repositories> <repository> <id>org.wicketstuff</id> <name>Wicket Stuff Repo</name> <url>http://wicketstuff.org/maven/repository</url> </repository> </repositories>
Related Questions

QALab Specific Goals for Maven 2 How do I use the MERGE task?

maven2-qalab-plugin - Frequently Asked Questions
The easiest way you can configure the qalab mojos for Merge is as follows if you have accepted the default settings for the qa tools. lt;build> <plugins> ... <plugin> <groupId>net.objectlab</groupId> <artifactId>mvn-qalab-plugin</artifactId> <version>2.
Related Questions

What is the Plugin?

FAQ
There are so many applications/programs that keep tracks of your recent activities such as Mediaplayer, Realplayer, Acrobat, Winzip, and much much more. Others can see what files you have opened, what video you have watched and what pictures you have viewed. Removing these stored activities will further help protect your privacy. With Privacy Shield's plugins, you can easily erase the tracks of these popular applications.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact