I want to write a Jave plugin for killbill and have been looking at the Hello World plugin to use as a base.
After cloning and building the plugin, I copied the file to /var/tmp/bundles/plugins/java/hello/1.0/hello-world-plugin-0.0.1-SNAPSHOT.jar in the docker killbill instance.
After that I used kpm to install the plugin running this command:
kpm install_java_plugin 'dev:hello' --from-source-file="hello-world-plugin-0.0.1-SNAPSHOT.jar" --version "1.0.1"
I believe that the installation was succesful because when when I run 'kpm inspect' I see:
_____________________________________________________________________________________________________________
| PLUGIN NAME | PLUGIN KEY | TYPE | GROUP ID | ARTIFACT ID | PACKAGING | VERSIONS sha1=[], def=(*), del=(x) |
_____________________________________________________________________________________________________________
| hello | dev:hello | java | ??? | ??? | ??? | 1.0[???], 1.0.1[???](*) |
_____________________________________________________________________________________________________________
But now when I open the KPM UI, I don't see it in the plugins list:
http://i.imgur.com/vuxkE7H.png
I was wondering if there is a step that I am missing here.
Thanks in advance.
Don