I'm trying to use a LessCss processor in my maven project using wro4j version 1.45. I use this import statement and I get an error at build time saying it isn't recognized.
import ro.isdc.wro.extensions.processor.support.less.LessCssProcessor;
All help is appreciated
I figured it out. The import statement was wrong, here is the correct import statement:
import ro.isdc.wro.extensions.processor.css.LessCssProcessor;