This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-Xms256m | |
-Xmx1024m | |
-ea | |
-server | |
-Dsun.io.useCanonCaches=false | |
-XX:MaxPermSize=250m | |
-XX:ReservedCodeCacheSize=64m | |
-XX:+UseCodeCacheFlushing | |
-XX:+UseConcMarkSweepGC | |
-XX:+AggressiveOpts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# which silent mode (-s) is not supported on all systems. | |
function alert_user { | |
echo "${1}"; | |
which growlnotify && growlnotify `basename $0` -m "${1}" | |
which notify-send && notify-send -u "${2}" "${1}" `basename $0` | |
} | |
function exit_ko { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Répertoire spécifique à l'environnement MAC | |
.DS_Store | |
# Fichier spécifique Windows | |
Thumbs.db | |
# Fichiers et répertoires spécifiques à IntelliJ IDEA | |
test-output/ | |
out/ | |
.idea/ | |
*.iml | |
*.ipr |