Skip to content

Commit

Permalink
Add scanning of extension-list jars
Browse files Browse the repository at this point in the history
Signed-off-by: Arjan Tijms <arjan.tijms@gmail.com>
  • Loading branch information
arjantijms committed May 31, 2022
1 parent dbd83d6 commit c889fe7
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,11 @@ private List<ReadableArchive> getExternalLibraries(DeploymentContext context) th
externalLibArchives.add(archiveFactory.openArchive(new File(externalLib.getPath())));
}

// Get the libraries referenced in the manifest extension-list
for (URI externalLib : context.getAppLibs()) {
externalLibArchives.add(archiveFactory.openArchive(new File(externalLib.getPath())));
}

return externalLibArchives;
}

Expand Down

0 comments on commit c889fe7

Please sign in to comment.