statemachine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.priytam</groupId> <artifactId>statemachine</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.priytam</groupId> <artifactId>statemachine</artifactId> <version>1.0.0</version> <name>statemachine</name> <description>Statemachine library with sync and async way of handling state events, Also have feature of expirying an state. ------------------------------------------ Project version: 1.0.0 Gradle version: 4.4 ------------------------------------------ </description> <url>https://github.com/Priytam/statemachine</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>pjpandey</id> <name>Priytam Jee Pandey</name> <email>mrpjpandey@gmail.com</email> </developer> </developers> <scm> <connection>scm:https://github.com/Priytam/statemachine.git</connection> <developerConnection>scm:git:git@github.com:/priytam/statemachine.git</developerConnection> <url>https://github.com/Priytam/statemachine.git</url> </scm> <dependencies> <dependency> <groupId>com.github.priytam</groupId> <artifactId>stopwatch</artifactId> <version>1.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.3.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>28.1-jre</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>