-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
svn-rev: tags/release_1_6_0@845
- Loading branch information
Showing
7 changed files
with
34 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<name>JFlex Maven Plugin</name> | ||
<version>1.6.0</version> | ||
<description> | ||
This is a Maven 2 plugin to generate a parser in Java code from | ||
This is a Maven 2/3 plugin to generate a parser in Java code from | ||
a Lexer definition, using JFlex. | ||
|
||
This plugin was previously called maven-jflex-plugin. | ||
|
@@ -49,7 +49,7 @@ | |
<developers> | ||
<developer> | ||
<id>decamps</id> | ||
<name>Régis Décamps</name> | ||
<name>Régis Décamps</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>developer</role> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | ||
* JFlex Maven2 plugin * | ||
* Copyright (c) 2007 Régis Décamps <[email protected]> * | ||
* Copyright (c) 2007 Régis Décamps <[email protected]> * | ||
* All rights reserved. * | ||
* * | ||
* License: BSD * | ||
|
@@ -31,7 +31,7 @@ | |
* | ||
* @goal generate | ||
* @phase generate-sources | ||
* @author Régis Décamps ([email protected]) | ||
* @author Régis Décamps ([email protected]) | ||
* | ||
*/ | ||
public class JFlexMojo extends AbstractMojo { | ||
|
@@ -143,7 +143,7 @@ public class JFlexMojo extends AbstractMojo { | |
* If true, the generated scanner will include a constructor taking | ||
* an InputStream. | ||
* | ||
* @parameter default-value="true" | ||
* @parameter default-value="false" | ||
*/ | ||
private boolean inputStreamCtor = false; // NOPMD | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
------ | ||
Usage | ||
------ | ||
Régis Décamps <[email protected]> | ||
R�gis D�camps <[email protected]>, | ||
minor updates by Gerwin Klein <[email protected]> | ||
------ | ||
16 February 2009 | ||
21 June 2014 | ||
------ | ||
|
||
|
||
About this document | ||
|
||
This document describes how to use jflex-maven-plugin, | ||
a Maven 2 plugin to call JFlex. | ||
a Maven 3 plugin to call JFlex. | ||
|
||
JFlex is a parser generator. Given a grammar, JFlex generates | ||
Java (TM) code to parse documents that follow this grammar. | ||
|
@@ -46,7 +47,7 @@ Usage | |
<plugin> | ||
<groupId>de.jflex</groupId> | ||
<artifactId>jflex-maven-plugin</artifactId> | ||
<version>1.5.0</version> | ||
<version>1.6.0</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
|
@@ -77,7 +78,7 @@ Usage | |
<plugin> | ||
<groupId>de.jflex</groupId> | ||
<artifactId>jflex-maven-plugin</artifactId> | ||
<version>1.5.0</version> | ||
<version>1.6.0</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
|
@@ -116,7 +117,7 @@ Usage | |
<plugin> | ||
<groupId>de.jflex</groupId> | ||
<artifactId>jflex-maven-plugin</artifactId> | ||
<version>1.5.0</version> | ||
<version>1.6.0</version> | ||
<executions> | ||
<execution> | ||
<id>strict jlex</id> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters