Make it more obvious how to download/add JMustache to your project.

This commit is contained in:
Michael Bayne
2010-11-02 14:28:34 -07:00
parent 2aa990d239
commit 0c3b9b9337
+9 -4
View File
@@ -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
=====