cleanup and adding in some runtime deps for debugging

This commit is contained in:
Michael Neale 2016-03-01 18:48:34 +11:00
parent 6a2d5f031e
commit 44beeb0ae4
4 changed files with 2 additions and 42 deletions

View File

@ -1,7 +0,0 @@
# Githib client details
github.client.id=xxx
github.client.secret=yyy
# Cookie crypter
cookie.password=c8hTtLA2qt72VYmcfqTXtAM6UzBlHygDjiYsKKeCaqwv6XnMVI
cookie.salt=Lu0TID26hiNjn7r4K/VzzSgzGeSbmylyfSNfbxoyMXueammsy0CbHpS1jDWpdxD3rbM8+aWnLcUecBpqS07GsQ==

View File

@ -1,12 +0,0 @@
#!/bin/sh
if [[ "$@" == "--debug" ]]
then
cmd=mvnDebug
else
cmd=mvn
fi
export MAVEN_OPTS="-Dblueocean.config.file=../app.properties"
cd all
$cmd hpi:run

View File

@ -119,6 +119,8 @@
//
linkHPI('blueocean-web');
linkHPI('blueocean-admin'); // Test plugin
linkHPI('blueocean-rest');
linkHPI('blueocean-commons');
</source>
</configuration>
</plugin>

View File

@ -1,23 +0,0 @@
#!/bin/bash
set -eu
echo "*"
echo "* This will use gulp to watch for changes"
echo "* and run mvn hpi:run on the core module."
echo "*"
echo "* Ensure you have gulp installed: http://gulpjs.com/"
trap ctrl_c INT
function ctrl_c() {
echo "** CLEANUP"
kill $MVN_PID
echo "CLEANUP finished."
}
cd core
mvn hpi:run &
MVN_PID=$!
echo "** Starting gulp to watch for changes"
gulp rebundle