You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Input on stdin should consist of the logging output of AdjacentVersionSameArtifactAndCompilerJarOracle (lines of the form "analysing XYZ.jar vs ABC.jar", or "XYZ.jar\tABC.jar").
# Outputs a Makefile to stdout that will run revapi on each mentioned pair of jars and store the JSON output in a file that mentions both jars' versions.
# Of the possible minimum severities (EQUIVALENT, NON_BREAKING, POTENTIALLY_BREAKING or BREAKING (the default)), we only care about BREAKING and POTENTIALLY_BREAKING.
REVAPI_BASE_CMD="revapi.sh --extensions=org.revapi:revapi-java:0.28.1,org.revapi:revapi-reporter-json:0.5.0 -Drevapi.reporter.json.minSeverity" # Must be followed by, e.g., "=BREAKING"
echo "all: all.BREAKING all.POTENTIALLY_BREAKING" # Make defaults to first goal