Open
Description
Currently jarvis executes a set of commands in order to publish a plugin:
TASKS = { "bundle install" => ALWAYS_RUN,
"bundle exec rake vendor" => ALWAYS_RUN,
"bundle exec rake publish_gem" => ALWAYS_RUN }.freeze
However, for a java based plugin there are different commands that need to executed.
So the publish command needs to:
- detect if the plugin is ruby or java based
a) If ruby => execute current set of tasks
b) If java => execute new set of tasks