From 0c3b9b93377f817aa8113a368a2b17a58732773e Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 2 Nov 2010 14:28:34 -0700 Subject: [PATCH] Make it more obvious how to download/add JMustache to your project. --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 20b4225..a696538 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,7 @@ Motivations Its existence justified by the above motivations, this implementation then strives to provide additional benefits: - * It is available via Maven Central and can thus be easily added to your - Maven, Ivy, etc. projects by simply adding a dependency on - `com.samskivert:jmustache:1.0`. Or download the [pre-built jar - file](http://repo1.maven.org/maven2/com/samskivert/jmustache/1.0/jmustache-1.0.jar). + * It is available via Maven Central, see below for details. * It is reasonably performant. Templates are parsed separately from execution. A template will specialize its variables on (class of context, name) pairs so that if a variable is first resolved to be (for example) a @@ -41,6 +38,14 @@ strives to provide additional benefits: template invocations, and the slower full resolution will only be tried if accessing the variable as a field fails. +Get It +====== + +JMustache is available via Maven Central and can thus be easily added to your +Maven, Ivy, etc. projects by simply adding a dependency on +`com.samskivert:jmustache:1.0`. Or download the [pre-built jar +file](http://repo1.maven.org/maven2/com/samskivert/jmustache/1.0/jmustache-1.0.jar). + Usage =====