Mercurial > people > jerboaa > scheduler-plugin
view copy_jars.sh @ 8:42d774fd621d
Update to work with latest Thermostat head.
author | Severin Gehwolf <sgehwolf@redhat.com> |
---|---|
date | Thu, 21 Feb 2013 20:35:38 +0100 |
parents | 8953d6ef1f06 |
children |
line wrap: on
line source
#/bin/sh if [ x"$THERMOSTAT_DEV_HOME" = x ] ; then echo "variable THERMOSTAT_DEV_HOME is not set, should point to the thermostat src directory" exit -1 fi PLUGIN=$THERMOSTAT_DEV_HOME/distribution/target/plugins/schedule/ mkdir -p $PLUGIN cp -v ./client-controllers/target/thermostat-tutorial-client-controllers-0.0.1-SNAPSHOT.jar $PLUGIN cp -v ./client-swing/target/thermostat-tutorial-client-swing-0.0.1-SNAPSHOT.jar $PLUGIN cp -v ./client-common/target/thermostat-tutorial-client-common-0.0.1-SNAPSHOT.jar $PLUGIN cp -v ./agent/target/thermostat-tutorial-agent-0.0.1-SNAPSHOT.jar $PLUGIN cp -v ./storage-common/target/thermostat-tutorial-storage-common-0.0.1-SNAPSHOT.jar $PLUGIN cp -v ./plugin.xml $PLUGIN