The generation of the native image with GraalVM of my application in Quarkus breaks when I'm using the geotools library
I need to find a workarround because I use geotools to read shapefile (SHP format) and convert it to WKT format.
Does anyone know of an alternative to solve this?
I reference these classes in my code:
import org.geotools.data.DataStore;
import org.geotools.data.DataStoreFinder;
import org.geotools.data.FeatureSource;
import org.geotools.feature.FeatureCollection;
import org.geotools.feature.FeatureIterator;