From 7bcb434c6f93cae1c64ba64274e714e4fe95c24e Mon Sep 17 00:00:00 2001
From: Jan-Eric Duden
Date: Mon, 29 Sep 2014 00:02:07 +0200
Subject: [PATCH] Add closing p tag
After discussion with sharell it turns out that some of the automated
translation tools used for creating other ANTLR language targets look
for closing tags (for one reason or another), so for this project
the practice is to explicitly close all tags.
---
.../src/main/java/org/antlr/mojo/antlr4/Antlr4ErrorLog.java | 6 +++---
.../src/main/java/org/antlr/mojo/antlr4/Antlr4Mojo.java | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4ErrorLog.java b/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4ErrorLog.java
index aebc20858..25ddf7aab 100644
--- a/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4ErrorLog.java
+++ b/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4ErrorLog.java
@@ -65,7 +65,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
* {@inheritDoc}
*
* This implementation passes the message to the Maven log.
- *
+ *
* @param message The message to send to Maven
*/
@Override
@@ -80,7 +80,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
* {@inheritDoc}
*
* This implementation passes the message to the Maven log.
- *
+ *
* @param message The message to send to Maven.
*/
@Override
@@ -103,7 +103,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
* {@inheritDoc}
*
* This implementation passes the message to the Maven log.
- *
+ *
* @param message
*/
@Override
diff --git a/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4Mojo.java b/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4Mojo.java
index b1ac20a29..030b11dc4 100644
--- a/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4Mojo.java
+++ b/antlr4-maven-plugin/src/main/java/org/antlr/mojo/antlr4/Antlr4Mojo.java
@@ -150,6 +150,7 @@ public class Antlr4Mojo extends AbstractMojo {
* A set of Ant-like inclusion patterns used to select files from the source
* directory for processing. By default, the pattern
* **/*.g4
is used to select grammar files.
+ *
*/
@Parameter
protected Set includes = new HashSet();