Skip to content

Instantly share code, notes, and snippets.

@webus
Created March 16, 2011 21:23
Show Gist options
  • Select an option

  • Save webus/873345 to your computer and use it in GitHub Desktop.

Select an option

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