
com.darylteo.vertx.gradle.util.MapToJson Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-gradle-plugin Show documentation
Show all versions of vertx-gradle-plugin Show documentation
A Gradle Plugin for building, assembling and running Vert.x projects.
The newest version!
package com.darylteo.vertx.gradle.util;
import groovy.json.JsonBuilder;
import java.util.Map;
/**
* Created by dteo on 10/05/2014.
*/
public class MapToJson {
public static String convert(Map map) {
JsonBuilder json = new JsonBuilder();
json.call(map);
return json.toPrettyString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy