Skip to content

Instantly share code, notes, and snippets.

@webus
Created March 16, 2011 21:23
Show Gist options
  • Save webus/873345 to your computer and use it in GitHub Desktop.
Save webus/873345 to your computer and use it in GitHub Desktop.
Compile Play! with Scala,GAE,Siena plugins
#!/bin/sh
m_path=$PWD
rm -RIf play
git clone https://github.com/playframework/play.git
cd play/framework
ant
cd ../modules
git clone https://github.com/guillaumebort/play-scala.git
git clone https://github.com/guillaumebort/play-gae.git
git clone https://github.com/vijaykiran/play-siena.git
ln -s play-scala scala
ln -s play-gae gae
ln -s play-siena siena
cd scala
ant -Dplay.path=$m_path/play
cd ../gae
ant -Dplay.path=$m_path/play
cd ../siena
ant -Dplay.path=$m_path/play
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment