Sto provando a configurare Maven per eseguire il preprocessore LESS CSS su una directory nel mio progetto web. Il flusso di base è:Chiamare foreach in maven-antrun-plugin
- Maven chiama maven-antrun-plugin.
- Ant-contrib
<foreach/>
scorre in una directory e trova tutti i file .less e chiama una destinazione. - Il target esegue Rhino, che esegue MENO che converte il file.
Per fare questo, ho il seguente codice XML:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>compile</phase>
<configuration>
<target name="processLessFile">
<!-- ... -->
</target>
<target name="main">
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.plugin.classpath"/>
<property name="css.dir" location="src/main/webapp/css"/>
<foreach param="file" target="processLessFile">
<fileset dir="${css.dir}">
<filename name="**/*.less" />
</fileset>
</foreach>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-contrib</artifactId>
<version>1.0b2</version>
</dependency>
</dependencies>
</plugin>
Il problema che sto incontrando è che l'obiettivo "principale" inizia ad eseguire, ma poi non riesce a <foreach>
:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (default) on project model-web-project: An Ant BuildException has occured: The following error occurred while executing this line:
[ERROR] /Users/.../pom.xml:4: Unexpected element "{http://maven.apache.org/POM/4.0.0}project" {antlib:org.apache.tools.ant}project
[ERROR] around Ant part ...<foreach param="file" target="processLessFile">... @ 6:50 in /Users/.../target/antrun/build-main.xml
[ERROR] -> [Help 1]
Sembra che qualcosa in Ant lo stia provando a leggere il file POM, forse cercando il bersaglio. Vedo che entrambi i target sono stati generati in file target/antrun/build-main.xml e target/antrun/build-processLessFile.xml, quindi è la directory in cui dovrebbe essere.
Vuoi dire ant-contrib piuttosto che ant-collab, vero? –
Grazie, continuo a digitare quello sbagliato. –