Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I like to integrate compass (http://wiki.github.com/chriseppstein/compass/) in my java project, and I need something to compile .sass files to css without running commands manualy.

So is there a way to execute a file using some maven plugin or goal?

share|improve this question

2 Answers

up vote 2 down vote accepted

Try the exec-maven plugin

share|improve this answer
That's what I was looking form. – Monku Feb 7 '10 at 17:37

The maven-antrun-plugin is the usual practice here, as it allows you to use an ant task to execute whatever. An alternative might be Groovy, but I confess that I don't know for sure that it can execute an arbitrary executable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.