Merge branch 'maven-plugin'
This commit is contained in:
commit
cb991ba46d
|
@ -182,6 +182,12 @@
|
||||||
|
|
||||||
<reporting>
|
<reporting>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugin-plugin</artifactId>
|
||||||
|
<version>3.2</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
|
|
@ -5,11 +5,11 @@ Usage
|
||||||
|
|
||||||
* Compiling Grammars into Parsers
|
* Compiling Grammars into Parsers
|
||||||
|
|
||||||
By default, the <<<{{{./antlr-mojo.html}antlr}}>>> goal will search for grammar
|
By default, the <<<{{{./antlr4-mojo.html}antlr4}}>>> goal will search for grammar
|
||||||
files in the directory <<<$\{basedir\}/src/main/antlr4>>> and any additional
|
files in the directory <<<$\{basedir\}/src/main/antlr4>>> and any additional
|
||||||
<<<.tokens>>> files in the directory <<<$\{basedir\}/src/main/antlr4/imports>>>.
|
<<<.tokens>>> files in the directory <<<$\{basedir\}/src/main/antlr4/imports>>>.
|
||||||
This can be configured to search other directories using the plugin configuration
|
This can be configured to search other directories using the plugin configuration
|
||||||
parameters as described in the <<<{{{./antlr-mojo.html}antlr}}>>> goal
|
parameters as described in the <<<{{{./antlr4-mojo.html}antlr4}}>>> goal
|
||||||
documentation.
|
documentation.
|
||||||
|
|
||||||
The following figure shows the expected layout of files for the default
|
The following figure shows the expected layout of files for the default
|
||||||
|
|
9
pom.xml
9
pom.xml
|
@ -48,6 +48,15 @@
|
||||||
</roles>
|
</roles>
|
||||||
</developer>
|
</developer>
|
||||||
|
|
||||||
|
<developer>
|
||||||
|
<name>Jim Idle</name>
|
||||||
|
<email>jimi@idle.ws</email>
|
||||||
|
<url>http://www.linkedin.com/in/jimidle</url>
|
||||||
|
<roles>
|
||||||
|
<role>Developer - Maven Plugin</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
|
||||||
</developers>
|
</developers>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
|
Loading…
Reference in New Issue