NoClassDefFoundError: javax / xml / stream / XMLStreamException

Estou recebendo a seguinte exceção ao tentar escrever um.xlsx file using Apache POI

NoClassDefFoundError: javax/xml/stream/XMLStreamException

Aqui está o trecho de código: -

XSSFWorkbook wb = new XSSFWorkbook();
        Sheet sheet = wb.createSheet();
        Row row = sheet.createRow(0);
        Cell cell = row.createCell(0);
        cell.setCellValue(100);
        FileOutputStream fileOut = new FileOutputStream("D:\\workspace\\April\\Excel Test\\workbook.xlsx");
        wb.write(fileOut);
        fileOut.close();

Tenho os seguintes frascos incluídos

dom4j-1.6.1 poi-ooxml-3.5-FINAL poi-3.6-20091214 xmlbeans-2.3.0 ooxml-schemas-1.0

Por favor, deixe-me saber o que estou fazendo de errado aqui ou estou perdendo alguma cois

questionAnswers(1)

yourAnswerToTheQuestion