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
Post a Comment