I am using the JSON JSR-353 api processor (jar javax.json-api-1.0.jar) to parse JSON files (using the streaming approach) and I added the JAR "javax.json-1.0.4.jar" that contains the default provider "org.glassfish.json.JsonProviderImpl" (without the second jar I had the exception "Provider org.glassfish.json.JsonProviderImpl not found" when the JsonParser is created "JsonParser parser = Json.createParser(json);")
My question is:
I need to work with the implementation of Jackson, so how can I set it as the Provider of the JSON JSR-353 API?