antlr3:antlr

Generate source code from ANTLRv3 grammar specifications.

Mojo Attributes:

  • Requires a Maven 2.0 project to execute.
  • Automatically executes within the lifecycle phase: generate-sources

Required Parameters

Name Type Description
outputDirectory File Location for generated Java files.
project MavenProject No description.
sourceDirectory File Specifies the Antlr directory containing grammar files.

Optional Parameters

Name Type Description
conversionTimeout int The number of milliseconds ANTLR will wait for analysis of each alternative in the grammar to complete before giving up.
debug boolean Enables ANTLR-specific network debugging. Requires a tool able to talk this protocol e.g. ANTLRWorks
excludes Set Set of exclude patterns
includes Set A set of patterns matching files from the sourceDirectory that should be processed as grammers.
profile boolean Generate a parser that computes profiling information.
trace boolean Generate a parser that logs rule entry/exit messages.

Parameter Details

conversionTimeout

The number of milliseconds ANTLR will wait for analysis of each alternative in the grammar to complete before giving up.

  • Type: int
  • Required: No

debug Enables ANTLR-specific network debugging. Requires a tool able to talk this protocol e.g. ANTLRWorks
  • Type: boolean
  • Required: No

excludes Set of exclude patterns
  • Type: java.util.Set
  • Required: No

includes A set of patterns matching files from the sourceDirectory that should be processed as grammers.
  • Type: java.util.Set
  • Required: No

outputDirectory Location for generated Java files.
  • Type: java.io.File
  • Required: Yes
  • Expression: ${project.build.directory}/generated-sources/antlr

profile Generate a parser that computes profiling information.
  • Type: boolean
  • Required: No

project No Description.
  • Type: org.apache.maven.project.MavenProject
  • Required: Yes
  • Expression: ${project}

sourceDirectory Specifies the Antlr directory containing grammar files.
  • Type: java.io.File
  • Required: Yes
  • Expression: ${basedir}/src/main/antlr

trace Generate a parser that logs rule entry/exit messages.
  • Type: boolean
  • Required: No