com.github.fgiannesini.libsass.gradle.plugin.extension.PluginParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libsass-gradle-plugin Show documentation
Show all versions of libsass-gradle-plugin Show documentation
A gradle plugin to compile scss with libsass.
package com.github.fgiannesini.libsass.gradle.plugin.extension;
import lombok.Getter;
import lombok.Setter;
/**
* Gradle plugin parameters declaration for development tasks
*/
@Getter
@Setter
public class PluginParameters extends PluginProductionParameters {
/**
* Directory to watch for continuous compilation
*/
private String watchedDirectoryPath;
/**
* Installation folder for bourbon sources
*/
private String bourbonInstallationPath;
/**
* Bourbon version needed
*/
private String bourbonVersion;
/**
* Installation folder for compass sources
*/
private String compassInstallationPath;
/**
* Compass version needed
*/
private String compassVersion;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy