Currently the HudsonPluginForPlay doesn't support Play version 2.x and the author hasn't updated his plugin since 4 months ago =/ so I'm trying to figure out a way to get the build automated and tested on my own using sbt-launcher plugin as highlighted by this SO post,
Play framework 2.0 continuos integration setup
However, I've run into a problem where my git checkout structure is like this,
project/
project1/ (Play project 1)
project2/ (Play project 2)
Now SBT seems to run on the root under project/ so it doesn't do anything. Is there a way to get it to say, run the sbt commands under project1/ and then project2/? I tried using shell command to CD into the directories but that doesn't seem to do anything in particular.