hussein / mod-lang-clojure

Clojure language implementation module for Vert.x

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mod-lang-clojure

The Clojure language implementation for Vert.x

Usage

First, you'll need to install Vert.x.

The latest stable release is 1.0.0. Until this module becomes part of Vert.x proper, you will need to make Vert.x aware of it by editing VERTX_HOME/conf/langs.properties and adding:

clojure=io.vertx~lang-clojure~1.0.0:io.vertx.lang.clojure.ClojureVerticleFactory
.clj=clojure

Every commit triggers a CI build, and we publish a SNAPSHOT when that succeeds. So if you would rather run the latest commit, update your langs.properties with:

clojure=io.vertx~lang-clojure~1.0.1-SNAPSHOT:io.vertx.lang.clojure.ClojureVerticleFactory
.clj=clojure

Note that this module only works with Vert.x 2.1RC2 or greater.

Documentation

For 1.0.0:

For HEAD:

Examples

See examples/README.md.

License

mod-lang-clojure is licensed under the Apache License, v2.0. See LICENSE.txt for details.

About

Clojure language implementation module for Vert.x

License:Other