Apache Batik dependency not resolved
Hello everyone,
i'm creating a servlet that converts a SVG image to a PNG with Apache Batik.
In my core/pom.xml i have the following dependency:
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-all</artifactId>
<version>1.17</version>
</dependency>
I can compile (and also run locally in a main function) the code but I'm getting the following error when installing the bundle on AEM:
org.apache.batik.gvt.renderer -- Cannot be resolved
org.apache.batik.transcoder -- Cannot be resolved
org.apache.batik.transcoder.image -- Cannot be resolved
How can I fix this?
For context, I'm using Java 8 and AEM 6.5.9.
Thank you for your replies.