croquet-core

A combination of Wicket, Jetty, Hibernate, and Guice.

License

License

GroupId

GroupId

com.metrink.croquet
ArtifactId

ArtifactId

croquet-core
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

croquet-core
A combination of Wicket, Jetty, Hibernate, and Guice.
Project URL

Project URL

http://croquet.metrink.com
Project Organization

Project Organization

Metrink

Download croquet-core

How to add to project

<!-- https://jarcasting.com/artifacts/com.metrink.croquet/croquet-core/ -->
<dependency>
    <groupId>com.metrink.croquet</groupId>
    <artifactId>croquet-core</artifactId>
    <version>0.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.metrink.croquet/croquet-core/
implementation 'com.metrink.croquet:croquet-core:0.1.0'
// https://jarcasting.com/artifacts/com.metrink.croquet/croquet-core/
implementation ("com.metrink.croquet:croquet-core:0.1.0")
'com.metrink.croquet:croquet-core:jar:0.1.0'
<dependency org="com.metrink.croquet" name="croquet-core" rev="0.1.0">
  <artifact name="croquet-core" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.metrink.croquet', module='croquet-core', version='0.1.0')
)
libraryDependencies += "com.metrink.croquet" % "croquet-core" % "0.1.0"
[com.metrink.croquet/croquet-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

There are no modules declared in this project.

Croquet

Croquet is a combination of Wicket, Jetty, Hibernate, and Guice. Croquet is to Wicket as DropWizard is to Jersey.

Very Quick Start

You can find the complete Croquet documentation here, and JavaDocs here. However, if you just want to jump into it, this is all you need to get going:

  1. Create a settings.yml file with your configuration.

  2. Create a Croquet instance.

final Croquet<Settings> croquet =
        CroquetBuilder.create(args)
                      .setHomePageClass(MyHomePage.class)
                      .addPageMount("/blah", BlahPage.class)
                      .addHealthCheck("/statuscheck", HealthCheck.class)
                      .pidFile("croquet.pid")
                      .build();
  1. Call run() on the Croquet instance.

Versions

Version
0.1.0