Download stateless4j-2.4.0.jar file

Introduction

You can download stateless4j-2.4.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

stateless4j-2.4.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.oxo42/stateless4j/pom.properties
META-INF/maven/com.github.oxo42/stateless4j/pom.xml
com.github.oxo42.stateless4j.OutVar.class
com.github.oxo42.stateless4j.StateConfiguration.class
com.github.oxo42.stateless4j.StateMachine.class
com.github.oxo42.stateless4j.StateReference.class
com.github.oxo42.stateless4j.StateRepresentation.class
com.github.oxo42.stateless4j.conversion.ParameterConversion.class
com.github.oxo42.stateless4j.delegates.Action.class
com.github.oxo42.stateless4j.delegates.Action1.class
com.github.oxo42.stateless4j.delegates.Action2.class
com.github.oxo42.stateless4j.delegates.Action3.class
com.github.oxo42.stateless4j.delegates.Action4.class
com.github.oxo42.stateless4j.delegates.Func.class
com.github.oxo42.stateless4j.delegates.Func2.class
com.github.oxo42.stateless4j.delegates.Func3.class
com.github.oxo42.stateless4j.delegates.Func4.class
com.github.oxo42.stateless4j.delegates.FuncBoolean.class
com.github.oxo42.stateless4j.transitions.Transition.class
com.github.oxo42.stateless4j.transitions.TransitioningTriggerBehaviour.class
com.github.oxo42.stateless4j.triggers.DynamicTriggerBehaviour.class
com.github.oxo42.stateless4j.triggers.IgnoredTriggerBehaviour.class
com.github.oxo42.stateless4j.triggers.TriggerBehaviour.class
com.github.oxo42.stateless4j.triggers.TriggerWithParameters.class
com.github.oxo42.stateless4j.triggers.TriggerWithParameters1.class
com.github.oxo42.stateless4j.triggers.TriggerWithParameters2.class
com.github.oxo42.stateless4j.triggers.TriggerWithParameters3.class

Pom

stateless4j-2.4.0.pom file content.

<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>
    <groupId>com.github.oxo42</groupId>
    <artifactId>stateless4j</artifactId>
    <version>2.4.0</version>
    <packaging>jar</packaging>
    <name>stateless4j</name>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
    <description>A fluent interface for state machines</description>
    <url>https://github.com/oxo42/stateless4j</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://github.com/oxo42/stateless4j</url>
        <connection>scm:git:https://github.com/oxo42/stateless4j.git</connection>
        <developerConnection>scm:git:https://github.com/oxo42/stateless4j.git</developerConnection>
    </scm>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <developers>
        <developer>
            <name>Arnaud SYLVESTRE</name>
        </developer>
        <developer>
            <name>John Oxley</name>
        </developer>
    </developers>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>1.8</version>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>target/filtered-sources/java</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.17</version>
                <configuration>
                    <includes>
                        <include>**/*Test*.java</include>
                    </includes>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <prerequisites>
        <maven>3.0.0</maven>
    </prerequisites>
</project>

POM Entry

<dependency>
   <groupId>com.github.oxo42</groupId>
   <artifactId>stateless4j</artifactId>
   <version>2.4.0</version>
</dependency>

Download

If you think the following stateless4j-2.4.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download stateless4j-2.4.0.jar file




PreviousNext

Related