Skip to content

Commit

Permalink
Merge pull request antlr#16 from teverett/master
Browse files Browse the repository at this point in the history
1.1.0 release
  • Loading branch information
teverett authored Dec 27, 2018
2 parents 4cff4f4 + 73615a4 commit 01a9b94
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ test-output
*.iml

out
*.versionsBackup
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Antlr4Formatter

building
Building
====
The project uses [maven wrapper](https://github.com/takari/maven-wrapper), so it's easy to build the project without worring about having the right Maven version installed locally.

Expand All @@ -13,8 +13,19 @@ To build `antlr4-formatter` and the standalone utility `antlr4-formatter-standal
./mvnw clean package
```

using the standalone formatter
Using the standalone formatter
====

To format a grammar use the script `formatFile.sh` passing the grammar file as an argument to the script.

Maven Coordinates
====

```
<groupId>com.khubla.antlr4formatter</groupId>
<artifactId>antlr4-formatter</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
```


2 changes: 1 addition & 1 deletion antlr4-formatter-standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.khubla.antlr4formatter</groupId>
<artifactId>antlr4-formatter-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
</parent>

<artifactId>antlr4-formatter-standalone</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion antlr4-formatter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.khubla.antlr4formatter</groupId>
<artifactId>antlr4-formatter-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
</parent>

<artifactId>antlr4-formatter</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@

<groupId>com.khubla.antlr4formatter</groupId>
<artifactId>antlr4-formatter-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>khubla.com Antlr4Formatter</name>
<description>Code formatter for Antlr4 Grammars</description>
<url>https://github.com/teverett/Antlr4Formatter</url>

<modules>
<module>antlr4-formatter</module>
<module>antlr4-formatter-standalone</module>
Expand Down

0 comments on commit 01a9b94

Please sign in to comment.