jdfa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.benas</groupId> <artifactId>jdfa</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>io.github.benas</groupId> <artifactId>jdfa</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>jDFA parent project</name> <description>An Event-Based Deterministic Finite Automaton implementation in Java</description> <url>https://github.com/benas/jDFA</url> <developers> <developer> <id>benas</id> <email>md.benhassine@gmail.com</email> </developer> </developers> <scm> <url>git@github.com:benas/jDFA.git</url> <connection>scm:git:git@github.com:benas/jDFA.git</connection> <developerConnection>scm:git:git@github.com:benas/jDFA.git</developerConnection> <tag>jdfa-1.0.0</tag> </scm> <licenses> <license> <name>MIT License</name> <url>http://opensource.org/licenses/mit-license.php</url> </license> </licenses> <modules> <module>jdfa-core</module> <module>jdfa-tutorials</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.1</version> </plugin> </plugins> </build> </project>