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

javascript - IndexedDB error: Uncaught DataCloneError: Failed to execute 'put' on 'IDBObjectStore': An object could not be cloned -

java - Unable to make sub reports with Jasper -

Integrity error when loading fixtures for Selenium testing in Django -