Ich versuche, das wro4j Maven Plugin zum Laufen zu bringen, leider wird mir ein Fehler präsentiert, dessen Grund ich nicht ganz verstehe:
[ERROR] Failed to execute goal ro.isdc.wro4j:wro4j-maven-plugin:1.5.0:run (proprocess- resources) on project someapp-webapp: Exception occured while processing: startup failed:
[ERROR] Script1.groovy: 1: unexpected token: < @ line 1, column 1.
[ERROR] <groups xmlns="http://www.isdc.ro/wro"
Hier ist meine Konfiguration:
pom.xml:
<plugin>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>
<executions>
<execution>
<id>proprocess-resources</id>
<phase>compile</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
<targetGroups>all</targetGroups>
<wroFile>src/build/wro.xml</wroFile>
<destinationFolder>${project.build.directory}/dist</destinationFolder>
<contextFolder>${basedir}/src/main/webapp/</contextFolder>
<extraConfigFile>src/build/wro.properties</extraConfigFile>
</configuration>
</plugin>
Und hier ist meine wro.xml-Datei:
<groups xmlns="http://www.isdc.ro/wro"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.isdc.ro/wro wro.xsd">
<group name="all">
<js>/src/main/webapp/js</js>
<css>/src/main/webapp/css</css>
</group>
</groups>
Ich habe auch eine wro.properties-Datei:
debug=true
gzipResources=false
ignoreMissingResources=true
jmxEnabled=true
managerFactoryClassName=ro.isdc.wro.examples.manager.CustomWroManager
preProcessors=sassCss
Ich sehe nichts, was ich in der wro4j-Dokumentation übersehen haben könnte, für Vorschläge bin ich dankbar!