Skip to content

Instantly share code, notes, and snippets.

@eeroan
Created January 24, 2013 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eeroan/4626824 to your computer and use it in GitHub Desktop.
Save eeroan/4626824 to your computer and use it in GitHub Desktop.
Maven configuration for running compass compile
<plugin>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>0.28.6</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
<configuration>
<execArgs>${project.build.directory}/rubygems/bin/compass compile -c compass_config.rb -s compressed</execArgs>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment