lesscss-maven-plugin
lesscss-maven-plugin copied to clipboard
outputFileFormat file name
I declared this configurarion in my pom.xml
<plugin>
<groupId>org.lesscss</groupId>
<artifactId>lesscss-maven-plugin</artifactId>
<version>1.7.0.1.1</version>
<configuration>
<includes>
<include>bootstrap/bootstrap.less</include>
</includes>
</configuration>
<executions>
<execution>
<id>minify</id>
<goals><goal>compile</goal></goals>
<configuration>
<compress>true</compress>
<outputFileFormat>{fileName}.min.css</outputFileFormat>
</configuration>
</execution>
</executions>
</plugin>
When run, the file generated is bootstrapbootstrap.min.css when i hope bootstrap/bootstrap.min.css.
The variable {fileName} remove character / or \
I have the same problem, too. But it only happen on windows, on my Mac is OK...