icefrog-dfa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.whaleal</groupId>
<artifactId>icefrog-dfa</artifactId>
<version>1.0.0</version>
</dependency><?xml version='1.0' encoding='utf-8'?>
<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>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<groupId>io.github.whaleal</groupId>
<artifactId>icefrog</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>icefrog-dfa</artifactId>
<name>${project.artifactId}</name>
<description>icefrog 基于DFA的关键词查找</description>
<dependencies>
<dependency>
<groupId>io.github.whaleal</groupId>
<artifactId>icefrog-core</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.github.whaleal</groupId>
<artifactId>icefrog-json</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>