1

Right now I am using an apply task inside of an antrun execution.

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.4</version>
    <executions>
        <execution>
            <id>compile-default-theme-css</id>
            <phase>compile</phase>
            <configuration>
                <tasks>
                    <apply executable="${mxmlc.path}" dir="${basedir}/cssdir/">
                        <srcfile/>
                        <fileset dir="${basedir}/cssdir/" includes="*.css"/>
                    </apply>
                </tasks>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>

How do I do this in pure maven? Without the antrun plugin?

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124
Gabriel
  • 1,679
  • 3
  • 16
  • 37

0 Answers0