我正在这样使用sass-maven-plugin
:
<plugin>
<groupId>nl.geodienstencentrum.maven</groupId>
<artifactId>sass-maven-plugin</artifactId>
<executions>
<execution>
<id>package</id>
<phase>compile</phase>
<goals>
<goal>update-stylesheets</goal>
</goals>
</execution>
</executions>
<configuration>
<resources>
<resource>
<source>
<directory>${basedir}/src/main/resources/META-INF/resources/css</directory>
</source>
<destination>${project.basedir}/target/classes/META-INF/resources/css</destination>
</resource>
</resources>
</configuration>
</plugin>
我在一个通用模块中有一个.scss
实用程序文件,我想通过使用以下两个其他不同的Maven模块(当然也使用该通用模块)来使用它们:
@import 'utils';
我尝试使用其他2个模块中的.scss
文件中的导入,但是在构建时遇到编译错误,因为它无法在特定的2个模块中找到该实用程序文件。
我该怎么做?
谢谢!