Search 5,000,000+ questions and answers.

Frequently Asked 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

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

Where are the Maven XSD schemas?

FAQs-1 - Maven User - Codehaus
Your favorite IDE probably supports XSD schema's for pom.xml and settings.xml editing. You need to specify the following: lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> ... </project> lt;settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.
Related Questions

top] Can SchemaCrawler be used with Maven?

SchemaCrawler - SchemaCrawler - Frequently Asked Questions
Yes, SchemaCrawler comes with a Maven plug-in. You can generate a SchemaCrawler report along with other reports for your Maven generated site.
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

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

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 integrate static (x)html into my Maven site?

FAQs-1 - Maven User - Codehaus
lt;project name="Maven War Plugin"> <bannerLeft> <name>Maven War Plugin</name> <src>http://maven.apache.org/images/apache-maven-project.png</src> <href>http://maven.apache.org/</href> </bannerLeft> <bannerRight> <src>http://maven.apache.org/images/maven-small.gif</src> </bannerRight> <body> <links> <item name="Maven 2" xhref="http://maven.apache.
Related Questions

Is there a property file for plug-in configuration in Maven 2.0?

FAQs-1 - Maven User - Codehaus
No. Maven 2.x no longer supports plug-in configuration via properties files. Instead, in Maven 2.0 you can configure plug-ins directly from command line using the -D arguement, or from the plug-in's POM using the <configuration> element.
Related Questions

Is there a way to get Maven to report the number of compile errors found?

FAQs-1 - Maven User - Codehaus
Currently, this type of summary information is not built into the compiler plugin, but it would be possible to add. If this feature is important to you, add your vote to MNG-1854. Currently, this is not possible. The main reason is that it's a non-trivial to determine whether an entire project's build is stale (the project here being one of the modules). It will be dependent on the phase being called, and the packaging of the particular module.
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

Why should I choose Host Maven?

Host Maven - Affordable Shared & Reseller Web Hosting - ...
Host Maven is a privately owned web hosting company. We offer a variety of web hosting solutions: shared web hosting, reseller web hosting, and VPS web hosting. With a focus on customer service, we believe that the one-on-one approach allows us to communicate and get to know our clients' needs better. We want you to have the best web hosting experience possible, which is why we invite you to choose Host Maven. For more reasons to choose us, see our About page.
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

Is Maven required to use this toolkit?

Databinder - Frequently asked questions
No. You???re free to link to the Databinder JAR in any way you see fit. However, the server bandwidth required to distribute ???quickstart??? projects containing all dependencies is unavailable to Databinder; using Maven is the only option for this convenience. You’d likely make up the time spent installing Maven 2 just in running the examples. And after working through those examples, you may find that you like Maven enough to use it in your own projects.
Related Questions

Will my Maven plugins update themselves?

Databinder - Frequently asked questions
Not always. If you think that a Maven plugin (like Jetty???s) is out of date, run the relevant command with a -U appended to check for new versions.
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 add my generated sources to the compile path of Maven, when using modello?

FAQs-1 - Maven User - Codehaus
Modello generate the sources in the generate-sources phase and automatically adds the source directory for compilation in maven. So you don't have to copy the generated sources. You have to declare the modello-plugin in the build of your plugin for source generation (in that way the sources are generated each time).
Related Questions

Why does Maven compile my test classes but don't run them?

FAQs-1 - Maven User - Codehaus
Tests are run by the surefire plugin. The surefire plugin can be configured to run certain test classes and you may have unintentionally done so by specifying a value to $ Unknown macro: {test} . Check your settings.xml and pom.xml for a property named "test" which would like this: lt;properties> <property> <name>test</name> <value>some-value</value> </property> </properties> ...
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

Maven Open Source! How do I download the source code?

FAQs-1 - Maven User - Codehaus
but what is the easy way to download the source code. I can't find all the answers I need to understand in the documeentation (need more!) so it will be usefull to get the source code locally to be able to do search etc... I've just found the answer svn anonymous access: http://maven.apache.org/source-repository.html&nbsp;
Related Questions

top]What Maven repository formats are supported?

Artifactory - Frequently Asked Questions
Artifactory supports only Maven 2 repositories. Maven 1 repositories are becoming rare and are not supported natively (but are usually proxied as Maven 2 repositories by Apache httpd). The iteration between repositories (of the same type) is by the order they are decalred in the configuration. We are working on adding support for virtual repositories, which will allow you to for aggregate any set of local and remote repositories under an alias, and to use that alias as a virtual repository.
Related Questions

top] How do I unsubscribe from Maven mailing lists?

Maven - Frequently Asked Technical Questions
So, if you have subscribed to users@maven.apache.org then you would send a message to users-unsubscribe@maven.apache.org in order to get off the list. People tend to have problems when they subscribe with one address and attempt to unsubscribe with another. So make sure that you are using the same address when unsubscribing that you used to subscribe before asking for help. If you find you still cannot get off a list then send a message to [mailing-list]-help@maven.apache.org.
Related Questions

top] Where are Maven SNAPSHOT artifacts?

Maven - Frequently Asked Technical Questions
If you are trying to build a development version of Maven or plugins, you may need to access the maven snapshot repositories.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact