Skip to content

Commit

Permalink
bump version: JFlex 1.6.1-SNAPSHOT -> 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lsf37 committed Mar 16, 2015
1 parent 59d5c19 commit f921b2b
Show file tree
Hide file tree
Showing 66 changed files with 128 additions and 128 deletions.
8 changes: 4 additions & 4 deletions jflex-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>jflex-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>JFlex Maven Plugin</name>
<version>1.6.1-SNAPSHOT</version>
<version>1.6.1</version>
<description>
This is a Maven 2/3 plugin to generate Lexer code in Java from
a Lexer specification, using JFlex.
Expand All @@ -21,7 +21,7 @@
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
<relativePath></relativePath>
<relativePath/>
</parent>
<mailingLists>
<mailingList>
Expand Down Expand Up @@ -195,7 +195,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand All @@ -220,7 +220,7 @@
<dependency>
<groupId>de.jflex</groupId>
<artifactId>jflex</artifactId>
<version>1.6.1-SNAPSHOT</version>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
6 changes: 3 additions & 3 deletions jflex-unicode-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.6.1-SNAPSHOT</version>
<version>1.6.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jflex-unicode-maven-plugin</artifactId>
Expand Down Expand Up @@ -74,7 +74,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
Expand All @@ -87,7 +87,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down
2 changes: 1 addition & 1 deletion jflex/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JFlex 1.6.1-SNAPSHOT
# JFlex 1.6.1

This directory contains JFlex, a fast scanner generator for Java.

Expand Down
2 changes: 1 addition & 1 deletion jflex/bin/jflex
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ JFLEX_HOME=${PRG}/..

# --------------------------------------------------------------------

$JAVA -Xmx128m -jar $JFLEX_HOME/lib/jflex-1.6.1-SNAPSHOT.jar $@
$JAVA -Xmx128m -jar $JFLEX_HOME/lib/jflex-1.6.1.jar $@
2 changes: 1 addition & 1 deletion jflex/bin/jflex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ REM (please do not add a trailing backslash)

set JFLEX_HOME=C:\JFLEX

java -Xmx128m -jar %JFLEX_HOME%\lib\jflex-1.6.1-SNAPSHOT.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
java -Xmx128m -jar %JFLEX_HOME%\lib\jflex-1.6.1.jar %1 %2 %3 %4 %5 %6 %7 %8 %9
2 changes: 1 addition & 1 deletion jflex/build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<project name="JFlex" default="help">

<property name="version" value="1.6.1-SNAPSHOT" />
<property name="version" value="1.6.1" />
<property name="bootstrap.version" value="1.6.0" />
<property name="junit.version" value="4.11" />
<property name="cup.version" value="11a" />
Expand Down
2 changes: 1 addition & 1 deletion jflex/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<version>1.6.1-SNAPSHOT</version>
<version>1.6.1</version>
<executions>
<execution>
<goals>
Expand Down
8 changes: 4 additions & 4 deletions jflex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.6.1-SNAPSHOT</version>
<version>1.6.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>JFlex</name>
Expand Down Expand Up @@ -143,7 +143,7 @@
</goals>
<configuration>
<target name="copy">
<copy file="${project.build.directory}/${project.artifactId}-${project.version}.jar" todir="lib" />
<copy file="${project.build.directory}/${project.artifactId}-${project.version}.jar" todir="lib"/>
</target>
</configuration>
</execution>
Expand Down Expand Up @@ -205,7 +205,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
Expand All @@ -218,7 +218,7 @@
</goals>
</pluginExecutionFilter>
<action>
<execute></execute>
<execute/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/Action.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -16,7 +16,7 @@
* It stores the Java code as String together with a priority (line number in the specification).
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
final public class Action {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/CharClassException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -15,7 +15,7 @@
* This Exception is used in class CharClasses.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class CharClassException extends RuntimeException {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/CharClassInterval.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -19,7 +19,7 @@
* All characters of the interval must belong to the same character class.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class CharClassInterval {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/CharClasses.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -15,7 +15,7 @@
/**
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class CharClasses {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/CharSet.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -13,7 +13,7 @@
/**
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public final class CharSet {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/CharSetEnumerator.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -16,7 +16,7 @@
* Does not implement java.util.Enumeration, but supports the same protocol.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
final public class CharSetEnumerator {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/CountEmitter.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -13,7 +13,7 @@
* An emitter for an array encoded as count/value pairs in a string.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class CountEmitter extends PackEmitter {
/** number of entries in expanded array */
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/DFA.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -19,7 +19,7 @@
* Contains minimization algorithm.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
final public class DFA {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/EOFActions.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -16,7 +16,7 @@
* A simple table to store EOF actions for each lexical state.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class EOFActions {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/Emitter.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -21,7 +21,7 @@
* Table compression, String packing etc. is also done here.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
final public class Emitter {
private static final Pattern JAVADOC_COMMENT_AND_MAYBE_ANNOTATIONS_PATTERN
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/ErrorMessages.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -20,7 +20,7 @@
* [Is not yet used exclusively, but should]
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class ErrorMessages {
private String key;
Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/GeneratorException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -14,7 +14,7 @@
* Thrown when code generation has to be aborted.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class GeneratorException extends RuntimeException {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/HiLowEmitter.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -13,7 +13,7 @@
* HiLowEmitter
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public class HiLowEmitter extends PackEmitter {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/IntCharSet.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -19,7 +19,7 @@
* [fixme: optimizations possible]
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public final class IntCharSet {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/IntPair.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -16,7 +16,7 @@
* Used in NFA to represent a partial NFA by its start and end state.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
final class IntPair {

Expand Down
4 changes: 2 additions & 2 deletions jflex/src/main/java/jflex/Interval.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* JFlex 1.6.1-SNAPSHOT *
* JFlex 1.6.1 *
* Copyright (C) 1998-2015 Gerwin Klein <[email protected]> *
* All rights reserved. *
* *
Expand All @@ -14,7 +14,7 @@
* An interval of characters with basic operations.
*
* @author Gerwin Klein
* @version JFlex 1.6.1-SNAPSHOT
* @version JFlex 1.6.1
*/
public final class Interval {

Expand Down
Loading

0 comments on commit f921b2b

Please sign in to comment.