------------------------------------------------------------ revno: 5880 committer: Lars Helge Overland <[email protected]> branch nick: dhis2 timestamp: Tue 2012-02-07 20:52:40 +0100 message: Added simple build script added: dhis-2/build.sh
-- lp:dhis2 https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk Your team DHIS 2 developers is subscribed to branch lp:dhis2. To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== added file 'dhis-2/build.sh' --- dhis-2/build.sh 1970-01-01 00:00:00 +0000 +++ dhis-2/build.sh 2012-02-07 19:52:40 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh + +# Requires maven to be on the classpath +# Skips test phase + +mvn clean install -DskipTests=true +cd dhis-web +mvn clean install -DskipTests=true +cd .. +
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : [email protected] Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp

