I'm trying to import the CSVReader into my Java project, but when I tried to build the project, it says that 'The import au cannot be resolved'.
I've added the opencsv-3.3.jar into my build path, and have imported the following in my source code.
import au.com.bytecode.opencsv.CSVReader;
import au.com.bytecode.opencsv.bean.ColumnPositionMappingStrategy;
import au.com.bytecode.opencsv.bean.CsvToBean;
What else could be missing or wrong that causes this issue?