statemachine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.sephiroth.android.library</groupId>
<artifactId>statemachine</artifactId>
<version>0.0.2</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>it.sephiroth.android.library</groupId>
<artifactId>statemachine</artifactId>
<version>0.0.2</version>
<packaging>aar</packaging>
<name>StateMachine</name>
<description>A Kotlin DSL for finite state machine</description>
<url>https://github.com/sephiroth74/StateMachine</url>
<licenses>
<license>
<name>BSD 3-Clause "New" or "Revised" License</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>sephiroth74</id>
<name>Alessandro Crugnola</name>
<email>alessandro.crugnola@gmail.com</email>
<url>http://blog.sephiroth.it</url>
<roles>
<role>author</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/sephiroth74/StateMachine.git</connection>
<developerConnection>scm:git:ssh://git@github.com/sephiroth74/StateMachine.git</developerConnection>
<url>https://github.com/sephiroth74/StateMachine</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-android-extensions-runtime</artifactId>
<version>1.3.40</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.3.40</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>