All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.download.html Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
{% extends "./layout.html" %}

{% block sectionClasses %}download{% endblock %}
{% block meta_title %}Download{% endblock %}
{% block meta_description %}Download Spincast{% endblock %}

{% block body %}

Download

{% if spincast.spincastCurrrentVersionIsSnapshot %} {% endif %}

The Quick Start application

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

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

Maven artifacts

The current version is : {{spincast.spincastCurrrentVersion}}.

{% if spincast.spincastCurrrentVersionIsSnapshot %}

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 all the default plugins :

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

Make sure your read the Bootstrapping your app section of the documentation to know how to start your application with this artifact in place.

Source Code

The source code is on Github.

{% endblock %}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy