Can someone detail the steps to use the Velocity templating engine in Java plugin project without using Maven for building and resolving dependencies.
I would like to download the required plugins/dependencies manually and package them part of my plugin. At the end I want the bare minimum functionality of generating rendered files based on templates and some log files as a result. I am not looking for how to start the engine, creating context, loading template files or file creation. Rather how to set up the environment which contains the velocity engine ready to be used in the plugin development environment in eclipse.
All the examples I found online suggested using Maven for resolving dependencies which is not possible in my case due to the in-place build infrastructure in my team.