https://github.com/kevinsimard/json-schema-generator-plugin
Java validator classes generator using JSON schema files
https://github.com/kevinsimard/json-schema-generator-plugin
generator java json-schema json-validation maven-plugin mvn
Last synced: 5 months ago
JSON representation
Java validator classes generator using JSON schema files
- Host: GitHub
- URL: https://github.com/kevinsimard/json-schema-generator-plugin
- Owner: kevinsimard
- License: mit
- Created: 2017-12-18T20:44:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-09T19:08:28.000Z (over 8 years ago)
- Last Synced: 2026-01-28T14:57:13.307Z (5 months ago)
- Topics: generator, java, json-schema, json-validation, maven-plugin, mvn
- Language: Java
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# JSON Schema Class Generator Maven Plugin
## Code Structure
├── src
│ └── main
│ ├── java
│ │ └── com
│ │ └── kevinsimard
│ │ └── schema
│ │ └── validator
│ │ └── plugin
│ │ ├── CleanMojo.java
│ │ └── GenerateMojo.java
│ └── resources
│ └── templates
│ ├── abstract.st
│ └── validator.st
├── .editorconfig
├── .gitattributes
├── .gitignore
├── LICENSE.md
├── README.md
└── pom.xml
## Usage
Use `$ mvn install` to install the JAR locally.
See [schema-validator-example](https://github.com/kevinsimard/schema-validator-example) project for a real implementation.
## License
This package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).