Repository: spark Updated Branches: refs/heads/master d7b58f146 -> 7007f72ba
[SPARK-13713][SQL][TEST-MAVEN] Add Antlr4 maven plugin. Seems https://github.com/apache/spark/commit/600c0b69cab4767e8e5a6f4284777d8b9d4bd40e is missing the antlr4 maven plugin. This pr adds it. Author: Yin Huai <[email protected]> Closes #12010 from yhuai/mavenAntlr4. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7007f72b Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7007f72b Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7007f72b Branch: refs/heads/master Commit: 7007f72ba7f0ccdc1d11315757a80f55a93451df Parents: d7b58f1 Author: Yin Huai <[email protected]> Authored: Mon Mar 28 13:50:42 2016 -0700 Committer: Yin Huai <[email protected]> Committed: Mon Mar 28 13:50:42 2016 -0700 ---------------------------------------------------------------------- pom.xml | 5 +++++ sql/catalyst/pom.xml | 15 +++++++++++++++ 2 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/7007f72b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 475f054..1513a18 100644 --- a/pom.xml +++ b/pom.xml @@ -1891,6 +1891,11 @@ <artifactId>antlr3-maven-plugin</artifactId> <version>3.5.2</version> </plugin> + <plugin> + <groupId>org.antlr</groupId> + <artifactId>antlr4-maven-plugin</artifactId> + <version>${antlr4.version}</version> + </plugin> <!-- Surefire runs all Java tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/spark/blob/7007f72b/sql/catalyst/pom.xml ---------------------------------------------------------------------- diff --git a/sql/catalyst/pom.xml b/sql/catalyst/pom.xml index c834a01..9bfe495 100644 --- a/sql/catalyst/pom.xml +++ b/sql/catalyst/pom.xml @@ -133,6 +133,21 @@ </includes> </configuration> </plugin> + <plugin> + <groupId>org.antlr</groupId> + <artifactId>antlr4-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>antlr4</goal> + </goals> + </execution> + </executions> + <configuration> + <visitor>true</visitor> + <sourceDirectory>../catalyst/src/main/antlr4</sourceDirectory> + </configuration> + </plugin> </plugins> </build> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
