We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the command "watch", it can't find the files on the classpath, however, it works as expected during the build.
Adrien
The text was updated successfully, but these errors were encountered:
Hi,
I solved this problem by using "includePath" parameter. In your pom file, define a maven variable named, for example, "style.includePath":
<properties> ... <style.includePath></style.includePath> </properties>
Then use it in the plugin configuration:
<plugin> <groupId>com.github.warmuuh</groupId> <artifactId>libsass-maven-plugin</artifactId> ... <configuration> ... <includePath>${style.includePath}</includePath> </configuration> </plugin>
Now you can easily custom the include path if you want to compile/watch your sass file without to build all dependent maven projects:
mvn libsass:watch -Dstyle.outputPath="/path/to/dependency/1;/path/to/dependency/2"
Sorry, something went wrong.
No branches or pull requests
When using the command "watch", it can't find the files on the classpath, however, it works as expected during the build.
Adrien
The text was updated successfully, but these errors were encountered: