Add Swagger / Postman Importer plugin to various.json#803
Add Swagger / Postman Importer plugin to various.json#803undera merged 2 commits intoundera:masterfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds the Swagger / Postman Importer plugin entry to the plugin catalog (various.json) so it can be discovered/installed via the tooling that consumes this repository metadata.
Changes:
- Add a new
swagger-postman-importerplugin entry (id/name/description/download URL, classes, version info) tosite/dat/repo/various.json. - Modify the first byte/character of the JSON file (introduces a UTF‑8 BOM).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
site/dat/repo/various.json
Outdated
| "changes": "Initial release. Requires Config Element in test plan." | ||
| } | ||
| } | ||
| ,{ |
There was a problem hiding this comment.
The new entry is inserted before the previous plugin object is fully closed: the loadmagic-load-distributor item’s versions object closes at line 2918, but the plugin object itself is never closed before the next ,{ begins. This makes various.json invalid JSON; close the loadmagic-load-distributor object (and use the standard }, separator) before starting the new object.
| ,{ | |
| }, | |
| { |
site/dat/repo/various.json
Outdated
| } | ||
| ,{ |
There was a problem hiding this comment.
There’s a stray leading comma before the new object ( ,{ at line 2919). Once the missing closing brace above is fixed, please switch to the file’s common pattern (}, to end the previous object, then { on the next line) to keep the JSON easy to diff/scan.
| } | |
| ,{ | |
| }, | |
| { |
a9a5d27 to
74b12ca
Compare
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Swagger / Postman Importer
A JMeter plugin that imports Swagger/OpenAPI specs and Postman Collections directly into a JMeter test plan via Tools → Swagger / Postman Importer.
Features
Links
Compatible with JMeter 5.x.