vietj / vertx-codegen-cli

A cli for Vert.x Codegen
5 stars 3 forks source link

Generate rxjava version of vertx-rabbitmq-client #3

Closed josesuero closed 5 years ago

josesuero commented 7 years ago

i'm new to vertx, I was trying to create a rxjava version of the rabbitmq client, I read somewhere that this cli could generated, i'm using the rx-java codegen file:

{ "name": "RxJava", "generators": [ { "kind": "class", "fileName": "module.translateQualifiedName(fqn, 'rxjava') + '.java'", "templateFileName": "vertx-rxjava/template/class.templ" } ] }

and this command line

java -jar vertx-codegen-cli-3.2.0-SNAPSHOT.jar --codegen codegen.json --target generated io.vertx:vertx-rabbitmq-client:3.3.3

i get:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. Jan 04, 2017 10:37:23 PM io.vertx.codegen.CodeGenProcessor getCodeGenerators INFO: Loaded RxJava code generator

there's no error but I get no files generated

could you please advice?