Skip to content

neoteric-eu/neo-starters

Repository files navigation

Neo Starters Build Status Gitter Waffle.io

Neo Starters are a set of Spring Boot starters which gives even more opinionated view on developing REST services. It is based on conventions and best practices, we have established in Neoteric. With Neo Starters we decrease boilerplate code we were used to write when developing our services.

Quick start

Set up your parent pom.xml:

<parent>
    <groupId>eu.neoteric.starter</groupId>
    <artifactId>neo-starter-parent</artifactId>
    <version>0.3.1</version>
</parent>

add basic starter as a dependency:

<dependency>
    <groupId>eu.neoteric.starter</groupId>
    <artifactId>neo-starter</artifactId>
</dependency>

and your ready to go.

Released artifacts repository
<repository>
    <id>neoteric-os-releases</id>
    <name>Neoteric OpenSource releases</name>
    <url>http://naga.neoteric.eu:8081/nexus/content/repositories/os-releases/</url>
</repository>
SNAPSHOT artifacts repository
<repository>
    <id>neoteric-os-snapshots</id>
    <name>Neoteric OpenSource snapshots</name>
    <url>http://naga.neoteric.eu:8081/nexus/content/repositories/os-snapshots/</url>
</repository>

Documentation

For detail usage and information go to project Wiki pages.