homebrew-core/Formula/jsonschema2pojo.rb

37 lines
1.0 KiB
Ruby

class Jsonschema2pojo < Formula
desc "Generates Java types from JSON Schema (or example JSON)"
homepage "http://www.jsonschema2pojo.org/"
url "https://github.com/joelittlejohn/jsonschema2pojo/releases/download/jsonschema2pojo-0.4.26/jsonschema2pojo-0.4.26.tar.gz"
sha256 "9a5c6e24c6a6a3a14be6a0ea877efeb8a00e5c8126d0826b57c0accd2ed755e4"
bottle :unneeded
depends_on :java => "1.6+"
def install
libexec.install %W[jsonschema2pojo-cli-#{version}.jar lib]
bin.write_jar_script libexec/"jsonschema2pojo-cli-#{version}.jar", "jsonschema2pojo"
end
test do
(testpath/"src/jsonschema.json").write <<-EOS.undent
{
"type":"object",
"properties": {
"foo": {
"type": "string"
},
"bar": {
"type": "integer"
},
"baz": {
"type": "boolean"
}
}
}
EOS
system bin/"jsonschema2pojo", "-s", "src", "-t", testpath
assert File.exist?("Jsonschema.java"), "Failed to generate Jsonschema.java"
end
end