Collected the project using Maven turned out the following structure:
In the app folder I have the main classes, in the xslt folder the resources that are needed for the application to work.
The problem is the following if in the IDE you specify the path like this:
File F = new File(Main.class.getResource("../xslt").toString()); That folder xslt is correct, but after building and running the JAR, a NullPointerException pops up. How to access another package in a compiled JAR file?
