Skip to content

Commit ee04b8a

Browse files
committed
update readme
Signed-off-by: Terence Parr <parrt@antlr.org>
1 parent 161c1ac commit ee04b8a

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[The "BSD license"]
2-
Copyright (c) 2011-2013 Terence Parr
2+
Copyright (c) 2011-2022 Terence Parr
33
All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
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.com and then ANTLR v3.
22

3-
*Given day-job constraints, my time working on this project is limited so I'll have to focus first on fixing bugs rather than changing/improving the feature set. Likely I'll do it in bursts every few months. Please do not be offended if your bug or pull request does not yield a response! --parrt*
4-
53
The main website is:
64

75
> http://www.stringtemplate.org
@@ -33,7 +31,7 @@ to the `<dependencies>` element in your **pom.xml** file.
3331
<dependency>
3432
<groupId>org.antlr</groupId>
3533
<artifactId>ST4</artifactId>
36-
<version>4.3</version>
34+
<version>4.3.2</version>
3735
<scope>compile</scope>
3836
</dependency>
3937
```
@@ -47,7 +45,7 @@ dependecies {
4745
// ...
4846
4947
// https://mvnrepository.com/artifact/org.antlr/ST4
50-
compile group: 'org.antlr', name: 'ST4', version: '4.3'
48+
compile group: 'org.antlr', name: 'ST4', version: '4.3.2'
5149
}
5250
```
5351

@@ -72,6 +70,6 @@ The source is at github.com:
7270
> https://github.com/antlr/stringtemplate4
7371
7472
If you would like to make changes to ST and build it yourself,
75-
just run `mvn compile` from the root directory of the repo.
73+
just run `mvn install` from the root directory of the repo.
7674

7775
You can also run `ant` from the root dir.

0 commit comments

Comments
 (0)