Building plugins in FC5

I’'m trying to build wildfire in FC5.

running the default build is fine, but when I try to build the plugins, I get the following:

root@chat2 build# ant plugin

Buildfile: build.xml

plugin:

delete Deleting directory /devprojects/org/jivesoftware/wildfire/target/plugins-dev/$
mkdir Created dir: /devprojects/org/jivesoftware/wildfire/target/plugins-dev/$

mkdir Created dir: /devprojects/org/jivesoftware/wildfire/target/plugins-dev/$/target
mkdir Created dir: /devprojects/org/jivesoftware/wildfire/target/plugins-dev/$/target/classes

BUILD FAILED

/devprojects/org/jivesoftware/wildfire/build/build.xml:936: The following error occurred while executing this line:

/devprojects/org/jivesoftware/wildfire/build/build.xml:957: srcdir “/devprojects/org/jivesoftware/wildfire/src/plugins/$/src/java” does not exist!

Total time: 2 seconds

Can anyone direct me as to how I can resolve this?

Hey grimsy,

Try:

**ant -Dplugin=**your_plugin plugin

The plugin target expects you to speficy a plugin name using the -D option. Example:

ant -Dplugin=broadcast plugin

That is useful if you write your own plugin. Just make sure that you follow the plugin doc.

If you want to build all the plugins instead, the command should be:

ant plugins

Thankyou. that seems to have done it