我试图建立行家在我的web项目执行上的一个目录中LESS CSS预处理程序。 基本流程是:
- Maven的调用Maven的antrun的插件。
- 蚂蚁的contrib
<foreach/>
遍历目录,发现所有的.LESS文件并调用目标。 - 目标执行犀牛,它执行LESS该文件转换。
要做到这一点,我有以下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>
我现在遇到的问题是,“主”的目标开始执行,但随后未能在<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]
看来,东西蚂蚁导致它尝试读取POM文件,可能是在寻找目标。 我看到这两个指标均生成到目标文件/ antrun /集结main.xml中和目标/ antrun /集结processLessFile.xml所以这是它应该寻找在目录中。