Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

ImageMagick wrapper added to bundle - magick -- Cannot be resolved

Avatar

Level 2

Hi

 

I've added ImageMagick wrapper (JMagick) to one of my workflow classes. 

 

import magick.ImageInfo;
import magick.MagickException;

Unfortunately, when it is deployed to local AEM instance, I've got the error in 

http://localhost:4502/system/console/bundles

 

like :

Imported Packages :

magick -- Cannot be resolved

 

here's a part of POM.xml where dependencies was added

        <!-- https://mvnrepository.com/artifact/jmagick/jmagick -->
<dependency>
<groupId>jmagick</groupId>
<artifactId>jmagick</artifactId>
<version>6.6.9</version>
<!-- <scope>provided</scope>-->
</dependency>


I've tried with and without a scope, but with no luck. Any suggestions?

 

0 Replies