1

I've added src/main/resources/META-INF/services/ro.isdc.wro.model.resource.processor.support.ProcessorProvider to my maven project. The file contains one line which has the fully qualified class name of my custom ProcessorProvider.

Everything works well with the run-time solution; however, during build time my custom ProcessorProvider is not invoked.

Am I missing some configuration?

jlb
  • 19,090
  • 8
  • 34
  • 65

1 Answers1

1

It's a known issue which is already fixed in latest development branch and will be released in version 1.7.2.

Alex Objelean
  • 3,893
  • 2
  • 27
  • 36
  • Should have checked the issues list! Thank you :) – jlb Oct 02 '13 at 13:46
  • is there a "contributing" guide for WRO4J? I've written a simple PreProcessor for [ngmin](https://github.com/btford/ngmin) that I think others might find useful. – jlb Oct 02 '13 at 14:16
  • Just fork the project on github and create a pull request when there is something useful. – Alex Objelean Oct 02 '13 at 14:39
  • Is there possibly a work-around for time time being, until 1.7.2 is released? – jlb Oct 18 '13 at 13:31
  • Either build latest snapshot locally or explicitly create a managerFactory implementation with processors configured programmatically. – Alex Objelean Oct 18 '13 at 16:48