1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# JSON Processing (JSON-P)
This projects contains API and Reference Implementation (RI) of JSR-374.
The Java API for JSON Processing provides portable APIs to parse, generate, transform, and query JSON documents.
## Build
Use the following command:
```bash
mvn -U -C clean install -Dnon.final=true
```
## Licensing
### JSON-P API
[Java API for JSON Processing 1.1 specification license](https://jcp.org/aboutJava/communityprocess/licenses/jsr374/JSR_374-Spec-Java_API_for_JSON_Proc-1.1-11.25.14.pdf)
### JSON-P RI
Commercial use:
The RI will be available for commercial use under the [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) open source license, the [GPLv2 with Classpath Exception](https://oss.oracle.com/licenses/CDDL+GPL-1.1) open source license, or this [license](https://jcp.org/aboutJava/communityprocess/licenses/jsr374/OCSL-JSR_374-Java_API_for_JSON_Processing-1.1-AttachD-11.25.14.pdf).
Non-Commercial use:
The RI will be available for non-Commercial use under the [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) open source license or the [GPLv2 with Classpath Exception](https://oss.oracle.com/licenses/CDDL+GPL-1.1) open source license.
## Links
- JSON-P official web site: https://javaee.github.io/jsonp
- JSR-374 page on JCP site: https://jcp.org/en/jsr/detail?id=374
|