Skip to content

Commit

Permalink
Include archive versions when generating output
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo authored and melix committed Jan 17, 2024
1 parent 4a52938 commit 46a75ff
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ private void generateOutput(JarArchiveComparator jarArchiveComparator) {
final List<JApiCmpArchive> baseline = toJapiCmpArchives(oldArchives);
final List<JApiCmpArchive> current = toJapiCmpArchives(newArchives);
List<JApiClass> jApiClasses = jarArchiveComparator.compare(baseline, current);
options.setOldArchives(baseline);
options.setNewArchives(current);
options.setReportOnlyFilename(true);
options.setOutputOnlyModifications(onlyModified);
options.setOutputOnlyBinaryIncompatibleModifications(onlyBinaryIncompatibleModified);
options.setIncludeSynthetic(includeSynthetic);
Expand Down

0 comments on commit 46a75ff

Please sign in to comment.