I am attempting to write a Jitterbit plugin. I have built my project, created a sub directory under Jitterbit Integration Server\Plugins\Pipeline\User, placed my .jar and plugin.xml in the subdirectory and restarted the process engine but I still do not see the the plugin in the available plugins for any of my targets. I have included the plugin.xml. Thanks.
<?xml version="1.0" ?>
<JitterbitPlugin SpecVersion="1.0.0.0">
<PipelinePlugin SpecVersion="1.0.0.0">
<Name>org.jitterbit.plugin.DecodeBase64Plugin</Name>
<Version>1.0.0-beta</Version>
<DisplayName>Base64Decoder</DisplayName>
<Author>Trudy Little</Author>
<Description>Decodes Base64 data in transaction file and saves as file</Description>
<UpdateUrl></UpdateUrl>
<DocumentationUrl></DocumentationUrl>
<Command>C:\WINDOWS\SYSTEM32\java.exe</Command>
<Arguments>-jar "$(plugin.directory)DecodeBase64Plugin.jar"</Arguments>
<PipelinePosition Optional="True" Relative="Pre" ExecutionOrder="88">Target</PipelinePosition>
</PipelinePlugin>
</JitterbitPlugin>


