croquet

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

License

License

GroupId

GroupId

com.metrink.croquet
ArtifactId

ArtifactId

croquet
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

pom
Description

Description

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

Project URL

http://croquet.metrink.com
Project Organization

Project Organization

Metrink
Source Code Management

Source Code Management

https://github.com/metrink/croquet

Download croquet

Filename Size
croquet-0.1.0.pom 13 KB
Browse

How to add to project

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

  • croquet-core
  • croquet-examples

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