Skip to content

Commit

Permalink
Merge pull request #9 from marconilanna/antlr-4.5.2-1
Browse files Browse the repository at this point in the history
Update ANTLR4 to 4.5.2-1
  • Loading branch information
ihji committed Mar 15, 2016
2 parents 8e9d965 + 86102d5 commit 23eab68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
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.9")
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.10")

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

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

## Version History

- `0.7.9`: Antlr 4.5.2 (@marconilanna)
- `0.7.10`: Antlr 4.5.2-1 (@marconilanna)

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

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -4,7 +4,7 @@ name := "sbt-antlr4"

organization := "com.simplytyped"

version := "0.7.9"
version := "0.7.10"

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
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.2",
antlr4Version := "4.5.2-1",
antlr4Generate <<= antlr4GeneratorTask,
antlr4Dependency := "org.antlr" % "antlr4" % antlr4Version.value,
antlr4RuntimeDependency := "org.antlr" % "antlr4-runtime" % antlr4Version.value,
Expand Down

0 comments on commit 23eab68

Please sign in to comment.