Skip to content

Instantly share code, notes, and snippets.

View omindu's full-sized avatar

Omindu Rathnaweera omindu

  • Colombo, Sri Lanka
View GitHub Profile
@omindu
omindu / commands
Created June 19, 2018 15:56 — forked from pulasthi7/commands
maven
mvn versions:update-properties -Dincludes=org.wso2.carbon.identity.* -DgenerateBackupPoms=false
mvn versions:update-properties -DgenerateBackupPoms=false -Dincludes=org.wso2.carbon.identity.*,org.wso2.carbon.extension.identity.*,org.wso2.charon,org.apache.rampart.wso2,org.apache.ws.security.wso2,org.wso2.carbon.consent.*,org.wso2.carbon.database.utils -U
//Run in release profile with signing disabled
mvn clean install -P wso2-release -Dgpg.skip
mvn versions:set -DnewVersion=1.0.8-SNAPSHOT
@omindu
omindu / buildAllExtensions.sh
Last active August 5, 2017 20:20 — forked from pulasthi7/buildAllExtensions.sh
Clones all the IS extensions repos
echo "building framework"
cd identity-framework
mvn clean install -Dmaven.test.skip=true
if [ $? -ne 0 ]
then
cd ..
echo Build failed at identity-framework
notify-send "Build failed at identity-framework"
exit 1
else