Skip to content

Commit

Permalink
Merge pull request #8 from marconilanna/antlr-4.5.2
Browse files Browse the repository at this point in the history
Update ANTLR4 to 4.5.2
  • Loading branch information
ihji committed Mar 10, 2016
2 parents 24ea609 + 039670f commit 8e9d965
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ file with the following contents:

resolvers += "simplytyped" at "http://simplytyped.github.io/repo/releases"

addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.8")
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.9")

And, add `antlr4Settings` to your `build.sbt` file.

Expand All @@ -29,6 +29,8 @@ You can also adjust `-listener`, `-no-listener`, `-visitor`, `-no-visitor` optio

## Version History

- `0.7.9`: Antlr 4.5.2 (@marconilanna)

- `0.7.8`: Appends 'antlr4' to the javaSource directory for generated Java code (@allertonm)

- `0.7.7`: Separate antlr4 runtime and build dependency (@thetristan)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "sbt-antlr4"

organization := "com.simplytyped"

version := "0.7.8"
version := "0.7.9"

publishTo := Some {
val target = if(version.value contains "SNAPSHOT") "snapshots" else "releases"
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/simplytyped/Antlr4Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object Antlr4Plugin extends Plugin {
sourceDirectory <<= (sourceDirectory in Compile) {_ / "antlr4"},
javaSource <<= (sourceManaged in Compile).apply(_ / "antlr4"),
managedClasspath <<= (configuration, classpathTypes, update) map Classpaths.managedJars,
antlr4Version := "4.5.1",
antlr4Version := "4.5.2",
antlr4Generate <<= antlr4GeneratorTask,
antlr4Dependency := "org.antlr" % "antlr4" % antlr4Version.value,
antlr4RuntimeDependency := "org.antlr" % "antlr4-runtime" % antlr4Version.value,
Expand Down

0 comments on commit 8e9d965

Please sign in to comment.