| 组织ID: |
de.jflex |
| 项目ID: |
jflex |
| 版本: |
1.8.1 |
| 最后修改时间: |
2020-03-03 01:31:10 |
| 包类型: |
jar |
| 标题: |
JFlex |
| 描述: |
JFlex is a lexical analyzer generator (also known as
scanner generator) for Java鈩�, written in Java.
|
| 大小: |
1.70MB |
|
|
| Maven引入代码: |
<dependency>
<groupId>de.jflex</groupId>
<artifactId>jflex</artifactId>
<version>1.8.1</version>
</dependency>
|
| Gradle引入代码: |
de.jflex:jflex:1.8.1
|
| 下载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.8.1</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>com.github.vbmacher</groupId>
<artifactId>java-cup-runtime</artifactId>
<version>${cup.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value-annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.pholser</groupId>
<artifactId>junit-quickcheck-core</artifactId>
<version>0.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.pholser</groupId>
<artifactId>junit-quickcheck-generators</artifactId>
<version>0.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.28</version>
<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>
<include>**/*Quickcheck.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>de.jflex</groupId>
<artifactId>jflex-maven-plugin</artifactId>
<!-- bootstrap with previous version -->
<version>1.8.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<skeleton>src/main/jflex/skeleton.nested-1.8.0</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>com.github.vbmacher:java-cup-runtime</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-jar-to-lib</id>
<phase>install</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/lib</outputDirectory>
<resources>
<resource>
<directory>target</directory>
<includes>
<include>${project.artifactId}-full-${project.version}.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<excludes>
<!-- The Unicode_x_y.java files were actually generated by the
jflex-unicode-maven-plugin. Don't bother running test coverage on them.
-->
<exclude>jflex/unicode/data/*.java</exclude>
</excludes>
</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
LICENSE_JFLEX
jflex/skeleton.default
jflex.l10n.ErrorMessages$1.class
jflex.l10n.ErrorMessages.class
jflex.l10n.ErrorMessages$ErrorMessage.class
jflex.core.RegExpException.class
jflex.core.SemCheck.class
jflex.core.RegExp2.class
jflex.core.AbstractLexScan.class
jflex.core.EOFActions.class
jflex.core.unicode.CharClasses.class
jflex.core.unicode.ILexScan.class
jflex.core.unicode.CMapBlock.class
jflex.core.unicode.CharClassInterval.class
jflex.core.unicode.IntCharSet$1.class
jflex.core.unicode.UnicodeProperties.class
jflex.core.unicode.IntCharSetComparator.class
jflex.core.unicode.IntCharSet.class
jflex.core.unicode.data.Unicode_7_0.class
jflex.core.unicode.data.Unicode_4_1.class
jflex.core.unicode.data.Unicode_6_0.class
jflex.core.unicode.data.Unicode_5_1.class
jflex.core.unicode.data.Unicode_6_2.class
jflex.core.unicode.data.Unicode_4_0.class
jflex.core.unicode.data.Unicode_5_2.class
jflex.core.unicode.data.Unicode_6_3.class
jflex.core.unicode.data.Unicode_6_1.class
jflex.core.unicode.data.Unicode_5_0.class
jflex.core.unicode.data.Unicode_3_1.class
jflex.core.unicode.data.Unicode_12_0.class
jflex.core.unicode.data.Unicode_9_0.class
jflex.core.unicode.data.Unicode_8_0.class
jflex.core.unicode.data.Unicode_2_1.class
jflex.core.unicode.data.Unicode_12_1.class
jflex.core.unicode.data.Unicode_3_2.class
jflex.core.unicode.data.Unicode_11_0.class
jflex.core.unicode.data.Unicode_3_0.class
jflex.core.unicode.data.Unicode_1_1.class
jflex.core.unicode.data.Unicode_2_0.class
jflex.core.unicode.data.Unicode_10_0.class
jflex.core.unicode.IntCharSet$IntCharSetIterator.class
jflex.core.unicode.UnicodeProperties$UnsupportedUnicodeVersionException.class
jflex.core.RegExp1.class
jflex.core.RegExps.class
jflex.core.LexScan.class
jflex.core.sym.class
jflex.core.NFA.class
jflex.core.LexParse.class
jflex.core.RegExp.class
jflex.core.LexScan$ZzFlexStreamInfo.class
jflex.core.OptionUtils.class
jflex.core.LexParse$CUP$LexParse$actions.class
jflex.core.Action.class
jflex.core.Macros.class
jflex.dfa.StatePairList.class
jflex.dfa.DeprecatedDfa.class
jflex.dfa.DfaFactory.class
jflex.dfa.DFA.class
jflex.skeleton.Skeleton.class
jflex.chars.Interval$IntervalIterator.class
jflex.chars.Interval.class
jflex.chars.Interval$1.class
jflex.io.FileUtils.class
jflex.option.Options.class
jflex.state.StateSet.class
jflex.state.StateSetEnumerator.class
jflex.exceptions.SilentExit.class
jflex.exceptions.MacroException.class
jflex.exceptions.GeneratorException.class
jflex.exceptions.CharClassException.class
jflex.generator.Emitters.class
jflex.generator.PackEmitter.class
jflex.generator.CountEmitter.class
jflex.generator.LexGenerator.class
jflex.generator.HiLowEmitter.class
jflex.generator.Emitter.class
jflex.anttask.JFlexTask.class
jflex.gui.OptionsDialog$11.class
jflex.gui.MainFrame$8.class
jflex.gui.OptionsDialog$8.class
jflex.gui.OptionsDialog$12.class
jflex.gui.OptionsDialog$9.class
jflex.gui.GridPanelConstraint.class
jflex.gui.OptionsDialog$10.class
jflex.gui.MainFrame$9.class
jflex.gui.MainFrame.class
jflex.gui.MainFrame$3.class
jflex.gui.OptionsDialog$1.class
jflex.gui.OptionsDialog$3.class
jflex.gui.MainFrame$1.class
jflex.gui.OptionsDialog.class
jflex.gui.MainFrame$5.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
java-cup-runtime-${cup.version}.jar
/com.github.vbmacher/java-cup-runtime/${cup.version}
查看java-cup-runtime所有版本文件
junit-quickcheck-core-0.9.jar
/com.pholser/junit-quickcheck-core/0.9
查看junit-quickcheck-core所有版本文件
junit-quickcheck-generators-0.9.jar
/com.pholser/junit-quickcheck-generators/0.9
查看junit-quickcheck-generators所有版本文件
slf4j-simple-1.7.28.jar
/org.slf4j/slf4j-simple/1.7.28
查看slf4j-simple所有版本文件
|