sbt - How to set up IDEA to execute post compilation task? -


when trying run code after compilation finished, wrote following in sbt build:

compile in compile <<= (compile in compile) map { x=>     // post-compile work     dofoo()     x } 

which works if run sbt compile command line, doesn't executed when build intellij idea.

is there way have intellij idea run post compilation step?

looks way intellij idea supports via ant, unfortunately.

see vs post build event command line equivalent in intellij idea?.

also, if go down route, might interested use ant4sbt.


Comments

Popular posts from this blog

java - Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved -

Round ImageView Android -

How can I utilize Yahoo Weather API in android -