Download

Download

Strolch is on Maven central , but if the latest version is not there, then build it locally. A guide can be found on the development page.

Strolch is also built on Jenkins, so you can see if the latest version passes all tests.

Include as Maven dependency

The easiest way to include strolch in your project is to use the following maven dependency:


<project>
    
    <properties>
        <strolch.version>1.8.5</strolch.version>
    </properties>
    
    <dependencies>
        <dependency>
            <groupId>li.strolch</groupId>
            <artifactId>li.strolch.bom</artifactId>
            <type>pom</type>
            <version>${strolch.version}</version>
            <scope>import</scope>
        </dependency>
    </dependencies>
</project>

The bom will include all Strolch modules, you can always exclude a dependency, or only include the dependencies you really want, e.g. model, etc.

After including the dependency, checkout development on how to turn your project into a Strolch agent.