Skip to content Skip to sidebar Skip to footer

Openfire Plugin Compilation Issue

I'm trying to compile openfire in eclipse that is work fine.After i need to compile plugin.I pass reference of openfire. Reference of this video https://www.youtube.com/watch?v=Kl

Solution 1:

There is no need to build or compile plugin from eclipse.If you use ant-build for build openfire then it work fine. Just you make sure, Ant is installed and configure proper path in your system.

Go to your downloaded openfire and paste your plugin under openfire/src/plugin folder.

Go command line, you can pass command

ant -f build/build.xml clean openfire plugins

or build specific plugin you can pass

ant -f build/build.xml clean openfire plugin -Dplugin=nameofyourplugin

after building you can check your plugin in this path.

\openfire\target\openfire\plugins

Thanks hope this will help you.


Post a Comment for "Openfire Plugin Compilation Issue"