Hi,
Using this configuration (pre-processor only):
<plugin>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>
<version>${wro4j.version}</version>
<executions>
<execution>
<id>validate-js</id>
<phase>compile</phase>
<goals>
<goal>jshint</goal>
</goals>
<configuration>
<targetGroups>js</targetGroups>
</configuration>
</execution>
</executions>
<configuration>
...
</configuration>
</plugin>
And moving to 1.7.0, Maven complains about FileNotFoundException on jshint-2.1.3.jar (webjars group). The file is present on the file system.
I understand that since 1.7.0, processors are used/upgraded in a different way. Is there any configuration to add?
Adding org.webjars:jshint manually (as a plugin or project dependency) doesn't solve the problem.
Thanks in advance and for the great work!