1

I am new to GATE-NLP . I have created my own Plugin.It is working fine . But now I want to use it in another machine . I dont want to copy the folder from my machine to anothers plugin folder . How can i do that ?

  • The plugin code has to available on the another machine. What kind of transfer (other than folder copy) would you prefer? – dedek May 09 '16 at 11:44
  • See also the GATE user guide / chapter 12.3.5 **Distributing Your New Plugins**: https://gate.ac.uk/userguide/sec:development:disributingplugins – dedek May 09 '16 at 11:47

1 Answers1

1

For the application distribution between machines I usually create a folder which contains all necessary plugins for application. All resources could be loaded from this folder. With this approach application has no dependencies from GATE framework installation.

ashingel
  • 494
  • 3
  • 11
  • I think you can use the "Export for GATECloud.net" option for this purpose. See https://gate.ac.uk/userguide/sec:family:cloud-preparing-app – dedek May 11 '16 at 12:02
  • Sometimes it's not possible due to the requirements. With the approach described above it's possible to deliver .war file for web app ( or jar + plugins folder) as a single file. – ashingel May 11 '16 at 16:05