| 组织ID: |
de.jflex |
| 项目ID: |
jflex |
| 版本: |
1.7.0 |
| 最后修改时间: |
2018-11-15 10:49:31 |
| 包类型: |
jar |
| 标题: |
JFlex |
| 描述: |
JFlex is a lexical analyzer generator (also known as
scanner generator) for Java鈩�, written in Java.
|
| 大小: |
1.21MB |
|
|
| Maven引入代码: |
<dependency>
<groupId>de.jflex</groupId>
<artifactId>jflex</artifactId>
<version>1.7.0</version>
</dependency>
|
| Gradle引入代码: |
de.jflex:jflex:1.7.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>jflex</artifactId>
<parent>
<groupId>de.jflex</groupId>
<artifactId>jflex-parent</artifactId>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>JFlex</name>
<inceptionYear>1998</inceptionYear>
<description>
JFlex is a lexical analyzer generator (also known as
scanner generator) for Java鈩�, written in Java.
</description>
<licenses>
<license>
<name>BSD</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>lsf37</id>
<name>Gerwin Klein</name>
<email>lsf@jflex.de</email>
<roles>
<role>founder</role>
<role>developer</role>
</roles>
<timezone>+10</timezone>
</developer>
<developer>
<id>steve_rowe</id>
<name>Steve Rowe</name>
<email>steve_rowe@users.sf.net</email>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>regisd</id>
<name>R茅gis D茅camps</name>
<email>decamps@users.sf.net</email>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>de.jflex</groupId>
<artifactId>cup_runtime</artifactId>
<version>${cup.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<!-- bootstrap with previous version -->
<version>1.6.1</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<skeleton>src/main/jflex/skeleton.nested</skeleton>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>cup-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<!--interface="true" locations="false" parser="LexParse"-->
<symbolInterface>true</symbolInterface>
<parserName>LexParse</parserName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>jflex.Main</mainClass>
<packageName>jflex</packageName>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>lib</directory>
<includes>
<include>**/${project.artifactId}-${project.version}.jar</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${project.artifactId}-full-${project.version}</finalName>
<artifactSet>
<includes>
<include>de.jflex:cup_runtime</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<versionRange>[1.6.0,)</versionRange>
<goals>
<goal>generate</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>generate-unicode-properties</id>
<build>
<plugins>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-unicode-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>generate</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-unicode-properties</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
jflex.Action.class
jflex.anttask.JFlexTask.class
jflex.CharClasses.class
jflex.CharClassException.class
jflex.CharClassInterval.class
jflex.CharSet.class
jflex.CharSetEnumerator.class
jflex.CountEmitter.class
jflex.DFA.class
jflex.Emitter.class
jflex.EOFActions.class
jflex.ErrorMessages.class
jflex.GeneratorException.class
jflex.gui.GeneratorThread.class
jflex.gui.GridPanel.class
jflex.gui.GridPanelConstraint.class
jflex.gui.Handles.class
jflex.gui.MainFrame$1.class
jflex.gui.MainFrame$10.class
jflex.gui.MainFrame$11.class
jflex.gui.MainFrame$2.class
jflex.gui.MainFrame$3.class
jflex.gui.MainFrame$4.class
jflex.gui.MainFrame$5.class
jflex.gui.MainFrame$6.class
jflex.gui.MainFrame$7.class
jflex.gui.MainFrame$8.class
jflex.gui.MainFrame$9.class
jflex.gui.MainFrame.class
jflex.gui.OptionsDialog$1.class
jflex.gui.OptionsDialog$10.class
jflex.gui.OptionsDialog$11.class
jflex.gui.OptionsDialog$12.class
jflex.gui.OptionsDialog$2.class
jflex.gui.OptionsDialog$3.class
jflex.gui.OptionsDialog$4.class
jflex.gui.OptionsDialog$5.class
jflex.gui.OptionsDialog$6.class
jflex.gui.OptionsDialog$7.class
jflex.gui.OptionsDialog$8.class
jflex.gui.OptionsDialog$9.class
jflex.gui.OptionsDialog.class
jflex.HiLowEmitter.class
jflex.IntCharSet.class
jflex.Interval.class
jflex.IntPair.class
jflex.LexicalStates.class
jflex.LexParse$CUP$LexParse$actions.class
jflex.LexParse.class
jflex.LexScan$ZzFlexStreamInfo.class
jflex.LexScan.class
jflex.MacroException.class
jflex.Macros.class
jflex.Main.class
jflex/Messages.properties
jflex.NFA.class
jflex.Options.class
jflex.Out.class
jflex.PackEmitter.class
jflex.RegExp.class
jflex.RegExp1.class
jflex.RegExp2.class
jflex.RegExps.class
jflex.ScannerException.class
jflex.SemCheck.class
jflex.SilentExit.class
jflex.Skeleton.class
jflex/skeleton.default
jflex.StatePairList.class
jflex.StateSet.class
jflex.StateSetEnumerator.class
jflex.StdOutWriter.class
jflex.sym.class
jflex.Timer.class
jflex.unicode.data.Unicode_1_1.class
jflex.unicode.data.Unicode_2_0.class
jflex.unicode.data.Unicode_2_1.class
jflex.unicode.data.Unicode_3_0.class
jflex.unicode.data.Unicode_3_1.class
jflex.unicode.data.Unicode_3_2.class
jflex.unicode.data.Unicode_4_0.class
jflex.unicode.data.Unicode_4_1.class
jflex.unicode.data.Unicode_5_0.class
jflex.unicode.data.Unicode_5_1.class
jflex.unicode.data.Unicode_5_2.class
jflex.unicode.data.Unicode_6_0.class
jflex.unicode.data.Unicode_6_1.class
jflex.unicode.data.Unicode_6_2.class
jflex.unicode.data.Unicode_6_3.class
jflex.unicode.data.Unicode_7_0.class
jflex.unicode.data.Unicode_8_0.class
jflex.unicode.data.Unicode_9_0.class
jflex.unicode.UnicodeProperties$UnsupportedUnicodeVersionException.class
jflex.unicode.UnicodeProperties.class
META-INF/maven/de.jflex/jflex/pom.xml
META-INF/maven/de.jflex/jflex/pom.properties
|
| 依赖Jar: |
cup_runtime-${cup.version}.jar
/de.jflex/cup_runtime/${cup.version}
查看cup_runtime所有版本文件
|