{#========================================== Download ==========================================#} {% extends "./layout.html" %} {% block sectionClasses %}download{% endblock %} {% block meta_title %}Download{% endblock %} {% block meta_description %}Download Spincast{% endblock %} {% block body %}

Download

{% if spincastLatestStableVersionIsSnapshot %} {% endif %}

The Quick Start application

Download the Spincast Quick Start [.zip] application as a starting point to build a new application or to learn how Spincast works.

Follow the Quick Start guide to learn how to use it.

Maven artifacts

The current version is : {{spincastLatestStableVersion}}.

{% if spincastLatestStableVersionIsSnapshot %}

Since this is a SNAPSHOT version, you first have to add this repository to your pom.xml (or ajust this for your build.gradle):

<repositories>
    <repository>
        <id>sonatype-snapshots</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

{% endif %}

The Maven artifact to start an application with an implementation for all the required components:

<dependency>
    <groupId>org.spincast</groupId>
    <artifactId>spincast-default</artifactId>
    <version>{{spincastLatestStableVersion}}</version>
</dependency>

The Maven artifact to start a Spincast application from scratch (you have to bind an implementation for all the required components, by yourself):

<dependency>
    <groupId>org.spincast</groupId>
    <artifactId>spincast-core</artifactId>
    <version>{{spincastLatestStableVersion}}</version>
</dependency>

Source Code

The source code is on Github.

{% endblock %}