com.github.fgiannesini.libsass.gradle.plugin.installer.FrameworkPropertiesEnum 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.installer;
import java.nio.file.Path;
import java.nio.file.Paths;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* Framework properties
*/
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Getter
public enum FrameworkPropertiesEnum {
BOURBON("bourbon", Paths.get("app", "assets", "stylesheets"), "bourbon"),
COMPASS("compass-core", Paths.get("stylesheets"), "compass");
/**
* Gem name for download
*/
private String gemName;
/**
* Internal path in gem to access main sources directory
*/
private Path internalGemSourcesPath;
/**
* Name of installation folder
*/
private String folderInstallationName;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy