lesscss-maven-plugin icon indicating copy to clipboard operation
lesscss-maven-plugin copied to clipboard

outputFileFormat file name

Open yracnet opened this issue 8 years ago • 1 comments

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 \

yracnet avatar Dec 05 '16 23:12 yracnet

I have the same problem, too. But it only happen on windows, on my Mac is OK...

ggwhite avatar Jan 04 '17 10:01 ggwhite