QueryCAT Logo
Search 5,000,000+ questions and answers.

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

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. See similar 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 See similar 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. See similar 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> See similar 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. See similar 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. See similar questions...

How do I setup a plugin configuration?

The partysip SIP proxy server - WellX Telecom
The configuration file (partysip.conf) contains two sections: the general configuration where an entry look like: The subsections are used for specifying plugin and users configuration. Sub-sections are enclosed with brackets. You can give a list of known users with login and password. The initial entry is the URL of the user in the domain. (sip:jack@atosc.org), then you have to give the login and password and an initial location valid for one hour. See similar 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. See similar questions...

What setup should I use?

HPI Racing - Frequently Asked Questions
The "right" setup is entirely dependent on what you are doing with the car. If you are only running in your parking lot or driveway, a higher ride height than what is specified in the kit manual may be best. This would allow you to drive over pebbles and cracks in the road. See similar questions...

How do I generate sources with the antrun plug-in?

FAQs-1 - Maven User - Codehaus
lt;plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <dependencies> <!-- add dependencies needed in your ant script --> </dependencies> <executions> <execution> <id>generate-sources</id> <phase>generate-sources</phase> <configuration> <tasks> <!-- this will delegate to an ant build. See similar questions...

How to use the SVN plugin?

KDevelop - 3.3.x FAQ
You need to manually import the project and source files into a subversion repository. Then restart KDevelop, and a subversion context menu should appear when you right-click on files. Internally, the subversion module looks for the presence of the .svn directory in the same directory containing the file you click on. See similar questions...

Which compiler must I use to build a plugin?

CPS
On the Macintosh, you can only use the g++ compiler. All examples use this compiler. If you type 'g++' inside a 'Terminal' and it gives some output, then it is already installed. If the command is not found, then you should download it together with ProjectBuilder or Xcode, which are nice graphical editors (IDE's). On Windows, the only supported compiler is Microsoft C++ (5 or higher), though a lot of people have worked with all kinds of other compilers succesfully as well. See similar questions...

How do I use the FuseSync plugin?

CEOExpress Email FAQs - CEOExpress Industry Resources
The FuseSync plug-in allows you to sync your contacts, calendars, tasks and notes folders between your CEOExpress email account and your Outlook or Outlook Express or BlackBerry folders. To use the FuseSync plug-in, you will need to download it from your Webmail account by going to Settings -> Utilities -> FuseSync Plug-in. Once downloaded and installed, it will show up in your email client and can be configured for sync. See similar questions...

How do I use the FAQ-Tastic plugin?

FAQ-Tastic FAQ · Knowledge Constructs
Firstly, you have to "activate" the plugin - the same way you would do for all WordPress plugins. If you're unsure, you can read the installation instructions for FAQ-Tastic. After installing and activating the plugin you will need to create a "Question group". This helps you identify your group of questions - tip: keep it descriptive but short and remember what you've called it. Once you've published, you will now have a new page with a textarea where you or your users can add new questions! See similar questions...

Can I use Ant instead of Maven in 2.x?

FAQ - AppFuse 2 - Confluence
If you create a project using one of the basic archetypes in M5 and then run mvn appfuse:full-source, you can use a modified version of AppFuse Light's build.xml to build/test/deploy your project. Below are the steps needed to add Ant support to a basic archetype: Download maven-artifact-ant-2.0.4-dep.jar and copy it to a "lib" directory in your project. You will need to create this directory if it doesn't already exist. We don't plan on supporting Ant for modular archetypes. See similar 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. See similar 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. See similar questions...

Explore Other Topics

How do I file a civil lawsuit?
What nutrients do mitochondria need?
I forgot my PIN. How do I find it?
Can I build my own kart chassis?
Can Macafem help women with menopause symptoms?
What happens in a civil lawsuit?
What if my GPA falls below a 2.75 before I am ready to graduate?
Q What causes arcing in electrical circuits?
What can be accomplished with the t·BagC2² EFB?
I received a notice of foreclosure from my bank. Can I still sell the house?
What is amblyopia?
How do you determine the rental value/length of lease?
How is page score calculated?
When I try to check my E-mail, it keeps asking for my password. Why?
More Questions >>

© Copyright 2007-2012 QueryCAT
About • Webmasters • Contact