So at what state is this in ?
working with Jruby / Vertx via Gradle seems do-able but complicated.
I use Gradle to download the dependencies but the only thing that seem to work within the Jruby project I had setup in IDEA was to actually copy the Vertx ruby source and put in my src folder , then with some minor alterations to the Ruby example provided at the vert site I was able to do this:
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))
require 'java'
require 'vertx/vertx'
$vertx = Vertx::Vertx::vertx
$vertx.create_http_server.request_handler { |req|
req.response
.put_header("content-type", "text/plain")
.end("Hello from Vert.x!")
}.listen(8080)
and to be clear this script above is directly under ./src
and the Ruby vertx source is directly under .src e.g. ./src/vertx, ../src/vertx-amqp-bridge , etc
of course I could segregate vertx source from my source
am I doing anything fundamentally against the grain , any suggestions as to a better setup in the context of IDEA ?
much appreciated
-Charles