I am trying to use Velocity in an apt annotation processing class (with Maven). On initializing Velocity
Properties vProps = new Properties();
vProps.load(this.getClass().getResourceAsStream("velocity.properties"));
mEngine = new VelocityEngine(vProps);
with the following
velocity.properties
runtime.log.logsystem.class=org.apache.velocity.runtime.log.NullLogChute
resource.loader=class
class.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
class.resource.loader.path=.
Here is the apt debug ...