Skip to content

antlr/stringtemplate4

Repository files navigation

ST (StringTemplate) is a java template engine (with ports for C#, Python, and Objective-C coming) for generating source code, web pages, emails, or any other formatted text output. ST is particularly good at multi-targeted code generators, multiple site skins, and internationalization / localization. It evolved over years of effort developing jGuru and then ANTLR v3.

The main website is:

https:// stringtemplate.org

Its distinguishing characteristic is that it strictly enforces model-view separation, unlike other engines. See:

https:// cs.usfca.edu/~parrt/papers/mvc.templates.pdf

The documentation is in this repo

https://github /antlr/stringtemplate4/tree/master/doc/index.md

Per the BSD license inLICENSE.txt,this software is not guaranteed to work and might even destroy all life on this planet.

INSTALLATION

Manual Installation

All you need to do is get the StringTemplate jar into yourCLASSPATH.SeeJava StringTemplate.

Maven

To reference StringTemplate from a project built using Maven, add the following to the<dependencies>element in yourpom.xmlfile.

<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>4.3.4</version>
<scope>compile</scope>
</dependency>

Gradle

Inbuild.gradle,add the following dependency:

dependencies {
//...

//https://mvnrepository /artifact/org.antlr/ST4
compilegroup:'org.antlr',name:'ST4',version:'4.3.4'
}

Make sure you are using themavenCentralrepository by adding it if necessary:

repositories {
//...
mavenCentral()
}

Other

Select a version onmvnrepository, and copy the snippet relevant to your build tool.

BUILDING FROM SOURCE

The source is at github:

https://github /antlr/stringtemplate4

If you would like to make changes to ST and build it yourself, just runmvn installfrom the root directory of the repo.

You can also runantfrom the root dir.