Search Gradle plugins

com.github.eirnym.js2p

A plugins that generates Java or Scala sources from JsonSchema using jsonschema2pojo. Please, see the GitHub page for details

https://github.com/eirnym/js2p-gradle

Sources: https://github.com/eirnym/js2p-gradle.git

Version 1.0 (latest)

1.0

Created 02 April 2020.

A plugins that generates Java or Scala sources from JsonSchema using jsonschema2pojo. Please, see the GitHub page for details

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.eirnym.js2p") version "1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.eirnym.js2p:javaschema2pojo-eirnym:1.0")
      }
    }
    
    apply(plugin = "com.github.eirnym.js2p")
  • Applying plugins to all subprojects .