I have been trying to very simply manipulate cells in a spreadsheet using poi, however every time I try to build my project it gives the same error.
This occurs every time at this line here XSSFWorkbook workbook = new XSSFWorkbook();
Here are the libraries downloaded:
Before the org/apache/logging/log4j/LogManager
error was something else at first, I found out that by installing dependencies the error changed slightly but did never go away.
I should probably mention that I am a beginner at java and I do not use Maven. I have spent a lot of time finding solutions to this problem and none of them helped, many mentioned using Maven but that is not really an option for me as I have never used maven before and I think that is something to learn in the near future.
If there is any alternative to poi it would be great too as I really only want to enter numbers in cells without having to read spreadsheets or customize them.
Thanks.
EDIT
The problem is solved thanks to @PJFanning for helping me out. It was indeed a problem with the required dependencies and their required version for each of them.