Registry / utility / velocity-dep

velocity-dep

JSON →
library1.3.1javamavenunverified

Velocity is a Java-based template engine that allows anyone to use a simple yet powerful template language to reference objects defined in Java code.

<dependency> <groupId>velocity</groupId> <artifactId>velocity-dep</artifactId> <version>1.3.1</version> </dependency>
INSTALL
IMPORT
SIG · VELOCITY-DEP
V
velocity-dep
utilityjavav1.3.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

VelocityEngine
✓ org.apache.velocity.app.VelocityEngine

Minimal example showing Velocity template engine initialization and template merging.

import org.apache.velocity.app.VelocityEngine; import org.apache.velocity.Template; import java.io.StringWriter; public class Quickstart { public static void main(String[] args) { VelocityEngine ve = new VelocityEngine(); ve.init(); Template t = ve.getTemplate("hello.vm"); StringWriter sw = new StringWriter(); t.merge(null, sw); System.out.println(sw.toString()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.3.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
velocity-dep — mvn dependency:get velocity-dep · libregistry