JSON Iterator is a minimal adaption of the stream parsing features from the project json-iterator/java.
Functionality has been extended with inversion-of-control mechanics to help minimize object creation.
Parsing supports String, byte[], char[] and InputStream data sources.
See JsonIterator.java for the public interface.
var jsonIterator = JsonIterator.parse("{\"hello\": \"world\"}");
System.out.println(jsonIterator.readObjField() + ' ' + jsonIterator.readString());
Generate a classic token with the read:packages
scope needed to access
dependencies hosted on GitHub Package Repository.
savaGithubPackagesUsername=GITHUB_USERNAME
savaGithubPackagesPassword=GITHUB_TOKEN
./gradlew check