{"id":31847232,"url":"https://github.com/leadpony/jsonp-test-suite","last_synced_at":"2025-10-12T09:30:11.116Z","repository":{"id":56516703,"uuid":"183848668","full_name":"leadpony/jsonp-test-suite","owner":"leadpony","description":"Test Suite for implementations of Jakarta JSON Processing API (JSON-P)","archived":false,"fork":false,"pushed_at":"2021-01-23T14:00:33.000Z","size":1569,"stargazers_count":3,"open_issues_count":5,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-24T12:07:35.598Z","etag":null,"topics":["jakarta","java","json","suite","test"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leadpony.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-28T03:09:44.000Z","updated_at":"2024-04-24T12:07:35.599Z","dependencies_parsed_at":"2022-08-15T20:10:46.479Z","dependency_job_id":null,"html_url":"https://github.com/leadpony/jsonp-test-suite","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/leadpony/jsonp-test-suite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leadpony%2Fjsonp-test-suite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leadpony%2Fjsonp-test-suite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leadpony%2Fjsonp-test-suite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leadpony%2Fjsonp-test-suite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leadpony","download_url":"https://codeload.github.com/leadpony/jsonp-test-suite/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leadpony%2Fjsonp-test-suite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010938,"owners_count":26084837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jakarta","java","json","suite","test"],"created_at":"2025-10-12T09:30:00.414Z","updated_at":"2025-10-12T09:30:11.093Z","avatar_url":"https://github.com/leadpony.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSON-P Test Suite\n[![Build Status](https://travis-ci.org/leadpony/jsonp-test-suite.svg?branch=master)](https://travis-ci.org/leadpony/jsonp-test-suite)\n[![Release](https://jitpack.io/v/org.leadpony/jsonp-test-suite.svg)](https://jitpack.io/#org.leadpony/jsonp-test-suite)\n\nThis project provides a set of tests for implementations of [Jakarta JSON Processing API] (JSON-P).\n\n## Project Goals\n\n* Provides comprehensive test suite which is fairly available for all JSON-P implementations.\n* Contributes to the quality of JSON-P implementations.\n* Compensates the ambiguities existing in the API specification.\n\n## Latest Test Results\n\nThe following JSON-P implementations are tested by this test suite.\n* [Jakarta JSON Processing] (Reference Implementation)\n* [Joy]\n\nThe latest test results are presented in [JSON-P Test Suite Reports].\n\n## Using as a Test Dependency\n\nThe jar-packaged artifact of this test suite is available from [JitPack] repository.\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eorg.leadpony\u003c/groupId\u003e\n        \u003cartifactId\u003ejsonp-test-suite\u003c/artifactId\u003e\n        \u003cversion\u003e2.1.0\u003c/version\u003e\n        \u003cscope\u003etest\u003c/scope\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\nThe test suite can be run by using Maven Surefire Plugin.\n\n```xml\n\u003cplguins\u003e\n    \u003cplugin\u003e\n        \u003cgroupId\u003eorg.apache.maven.plugins\u003c/groupId\u003e\n        \u003cartifactId\u003emaven-surefire-plugin\u003c/artifactId\u003e\n        \u003cconfiguration\u003e\n            \u003cdependenciesToScan\u003e\n                \u003cdependency\u003eorg.leadpony:jsonp-test-suite\u003c/dependency\u003e\n            \u003c/dependenciesToScan\u003e\n            \u003cexcludedGroups\u003eambiguous\u003c/excludedGroups\u003e\n            \u003cexcludes\u003e\n                \u003cexclude /\u003e\n            \u003c/excludes\u003e\n        \u003c/configuration\u003e\n    \u003c/plugin\u003e\n\u003c/plguins\u003e\n```\n\n## Building from Source\n\nThe following tools are required to build and run the artifacts.\n* JDK 9 or higher\n* [Apache Maven] 3.6.0 or higher\n\nThe commands below build and install the test suite into your local Maven repository.\n\n```bash\nmvn clean install\n```\n\nWhen testing with *Jakarta JSON Processing*:\n\n```bash\nmvn test -P test-with-jakarta\n```\n\nWhen testing with *Joy*:\n\n```bash\nmvn test -P test-with-joy\n```\n\n## Copyright Notice\nCopyright 2019-2021 the original author or authors. All rights reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this product except in compliance with the License.\nYou may obtain a copy of the License at\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n[Apache 2.0 License]: https://www.apache.org/licenses/LICENSE-2.0\n[Jakarta JSON Processing API]: https://eclipse-ee4j.github.io/jsonp/\n[Jakarta JSON Processing]: https://eclipse-ee4j.github.io/jsonp/\n[Joy]: https://github.com/leadpony/joy\n[Apache Maven]: https://maven.apache.org/\n[JSON-P Test Suite Reports]: https://leadpony.github.io/jsonp-test-suite/project-reports.html\n[JitPack]: https://jitpack.io/#org.leadpony/jsonp-test-suite\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleadpony%2Fjsonp-test-suite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleadpony%2Fjsonp-test-suite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleadpony%2Fjsonp-test-suite/lists"}