automaton
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.michaelmior</groupId> <artifactId>automaton</artifactId> <version>1.15</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> <groupId>io.github.michaelmior</groupId> <artifactId>automaton</artifactId> <version>1.15</version> <packaging>jar</packaging> <name>io.github.michaelmior.automaton</name> <description> This package contains a full DFA/NFA implementation with Unicode alphabet and support for all standard regular expression operations. </description> <url>https://github.com/michaelmior/automaton</url> <licenses> <license> <name>BSD</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> </license> </licenses> <developers> <developer> <id>amoeller</id> <name>Anders Møller</name> <email>amoeller@cs.au.dk</email> <url>https://cs.au.dk/~amoeller</url> <organization>Aarhus University</organization> </developer> <developer> <id>michaelmior</id> <name>Michael Mior</name> <email>michael.mior@gmail.com</email> <url>https://michael.mior.ca</url> <organization>Rochester Institute of Technology</organization> </developer> </developers> <scm> <connection>scm:git:git://github.com/michaelmior/automaton.git</connection> <developerConnection>scm:git:ssh://github.com:michaelmior/automaton.git</developerConnection> <url>https://github.com/michaelmior/automaton</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <sourceDirectory>src</sourceDirectory> <outputDirectory>build</outputDirectory> <testSourceDirectory>test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> <doclint>none</doclint> <nodeprecated>true</nodeprecated> <notree>true</notree> <nohelp>true</nohelp> <links> <link>https://docs.oracle.com/javase/8/docs/api/</link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <phase>compile</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>io.github.michaelmior.automaton.Datatypes</mainClass> <systemProperties> <systemProperty> <key>io.github.michaelmior.automaton.datatypes</key> <value>build</value> </systemProperty> </systemProperties> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.44.3</version> <configuration> <java> <includes> <include>src/**/*.java</include> <include>test/java/**/*.java</include> <include>src/io.github.michaelmior/automaton/Automaton.java</include> </includes> <googleJavaFormat /> <importOrder /> <licenseHeader> <file>${project.basedir}/header.txt</file> </licenseHeader> </java> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.12.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.12.1</version> <scope>test</scope> </dependency> </dependencies> </project>