graceland-core

Graceland is an easy way to develop pluggable Dropwizard applications.

License

License

GroupId

GroupId

io.graceland
ArtifactId

ArtifactId

graceland-core
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

pom
Description

Description

graceland-core
Graceland is an easy way to develop pluggable Dropwizard applications.
Source Code Management

Source Code Management

https://github.com/graceland/graceland-core

Download graceland-core

Filename Size
graceland-core-0.1.0.pom 8 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/io.graceland/graceland-core/ -->
<dependency>
    <groupId>io.graceland</groupId>
    <artifactId>graceland-core</artifactId>
    <version>0.1.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/io.graceland/graceland-core/
implementation 'io.graceland:graceland-core:0.1.0'
// https://jarcasting.com/artifacts/io.graceland/graceland-core/
implementation ("io.graceland:graceland-core:0.1.0")
'io.graceland:graceland-core:pom:0.1.0'
<dependency org="io.graceland" name="graceland-core" rev="0.1.0">
  <artifact name="graceland-core" type="pom" />
</dependency>
@Grapes(
@Grab(group='io.graceland', module='graceland-core', version='0.1.0')
)
libraryDependencies += "io.graceland" % "graceland-core" % "0.1.0"
[io.graceland/graceland-core "0.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • graceland-platform
  • graceland-metrics-graphite
  • graceland-example

graceland-core

Build Status

  • master Build Status
  • develop Build Status

About

NOTE: Graceland is currently pre 1.0.0, and therefore the APIs can change between releases. We'll do our best to maximize the benefit of each change, but until we hit 1.0.0, there are no garuntees from version to verison.

Graceland lets you easily build a dropwizard application using Guice to inject everything, everywhere.

Graceland introduces the concept of Plugins (which are pretty much Guice Modules) so you can compose an application easily and modularly. To read more about plugins, see the plugin documentation section.

Depending On It

Graceland is currently publishing a 0.1.0 build to the Sonatype Snapshot Central Repository. Once we get to a stable release, we'll be porting things over to Maven Central. Until then, use this:

Maven Instructions:

<repositories>
    <repository>
        <id>Sonatype Snapshots</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>io.graceland</groupId>
        <artifactId>graceland-platform</artifactId>
        <version>0.1.0</version>
    </dependency>
<dependencies>

Gradle Instructions:

repositories {
    maven {
        url "https://oss.sonatype.org/content/repositories/snapshots/"
    }
}

dependencies {
    compile “io.graceland:graceland-platform:0.1.0"
}

Documentation

The documentation can be found on the graceland-core read the docs.

More Info

Read more information about dropwizard at dropwizard.io.

Versions

Version
0.1.0