Hi,
Do you know any possibility of compiling a report in JAVA without an internet connection? Like replace external xsd "http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" something else.
When i compile my maven application i got error like "no schema access"
regards
3 Answers:
Posted on December 29, 2018 at 3:40am
Did you try building Maven application with local dependencies ? With the local dependencies, Maven tries to fetch all the dependencies from the m2 repository instead of connecting to remote repos.
https://stackoverflow.com/questions/4955635/how-to-add-local-jar-files-t...