Interface SenchaProfileConfiguration
-
- All Known Implementing Classes:
AbstractSenchaPackageOrAppMojo,MavenSenchaProfileConfiguration,SenchaPackageAppMojo,SenchaPackageMojo
public interface SenchaProfileConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>getAdditionalCssIncludeInBundle()A list of paths to CSS files to include that are not loaded via the class loader (usually in resources folder).List<String>getAdditionalCssNonBundle()A list of paths to CSS files to include that are not loaded via the class loader (usually in resources folder).List<String>getAdditionalJsIncludeInBundle()A list of paths to JS files to include that are not loaded via the class loader (usually in resources folder).List<String>getAdditionalJsNonBundle()A list of paths to JS files to include that are not loaded via the class loader (usually in resources folder).List<String>getRequiredClasses()Specifies the required classes.
-
-
-
Method Detail
-
getAdditionalCssNonBundle
@Nonnull List<String> getAdditionalCssNonBundle()
A list of paths to CSS files to include that are not loaded via the class loader (usually in resources folder). "bundle" option will be set to false, "includeInBundle" will be set to false.
-
getAdditionalJsNonBundle
@Nonnull List<String> getAdditionalJsNonBundle()
A list of paths to JS files to include that are not loaded via the class loader (usually in resources folder). "bundle" option will be set to false, "includeInBundle" will be set to false.
-
getAdditionalCssIncludeInBundle
@Nonnull List<String> getAdditionalCssIncludeInBundle()
A list of paths to CSS files to include that are not loaded via the class loader (usually in resources folder). "bundle" option will be set to false, "includeInBundle" will be set to true.
-
getAdditionalJsIncludeInBundle
@Nonnull List<String> getAdditionalJsIncludeInBundle()
A list of paths to JS files to include that are not loaded via the class loader (usually in resources folder). "bundle" option will be set to false, "includeInBundle" will be set to true.
-
-