Maven build notifications

Setting up new environment is usually a great time to reflect on all the great things and all the bad things you had encountered in the past.
Now I had just experienced this very moment twice in a row, thus resulting in a full scale tools revision. One of the things I have always overlooked were command line aliases.

Once I decided to use aliases, another question was in order: Why to stop there, isn't there a way to put them to even better use? And after a while of googling I found a great article http://erics-notes.blogspot.cz/2013/06/maven-ant-alerts-in-ubuntu.html, it describes how to get system notifications from command line.

While until now all the project I encountered took less than a minute to build, my current project's tests take more than ten minutes to execute. This is why I searched for this feature. Now I can easily switch to another window to do something somewhat productive and yet to be notified as soon as the build finishes. And all that without the need to periodically check the terminal window or guessing according to processor's fan noise.

Setup

The first thing you need is obviously Maven itself. You can install it from repository, or manually from maven home. This post's main script assumes that Maven is present on PATH, allowing you, the script or anyone else to invoke Maven by mvn command.

Second requirement is the notification library libnotify-bin. This can be easily tested by notify-send "test" command. This is a quite interesting library and I suggest you to read its notify-send --help for further customization possibilities.

Script

This is my version of the script based on Eric's script. Detail explanation is located after the script.
#!/bin/bash
cmdstatus()
{
    CMD=$1
    shift

    $CMD $@
    RETCODE=$?
    BUILD_DIR=${PWD##*/}
    BUILD_CMD=`basename $CMD`
    if [ $RETCODE -eq 0 ]
    then
        notify-send -c $BUILD_CMD -i emblem-default -t 3600000 "$BUILD_DIR: $BUILD_CMD successful" "$(date)"
    elif [ $RETCODE -eq 130 ]
    then
        notify-send -c $BUILD_CMD -i emblem-ohno -t 3600000 "$BUILD_DIR: $BUILD_CMD canceled" "$(date)"
    else
        notify-send -c $BUILD_CMD -i emblem-important -t 3600000 "$BUILD_DIR: $BUILD_CMD failed" "$(date)"
    fi
    return $RETCODE
}

alias mvn="cmdstatus mvn"
alias mci="mvn clean install"

The script defines function cmdstatus, which wraps around any given command and sends notification depending on command's return code right after a command finishes.

There are three different notifications. Return code zero indicates Success, code 130 indicates user termination (usually ctrl + c), this is the main change as cancelled builds being reported as failed really bordered me. Any other return code is declared a failure.

Second last line of the script is the key system change. This alias actively overrides maven's binary from PATH and replaces it with cmdstatus wrapped version.

The last line is merely a demonstration, one of my many expanding aliases. It shows you, that you can safely build upon the notification wrap. Now executing the command mci results in command cmdstatus mvn clean install, which would be quite a pain to write several times a day.

Wiring

The code snippet needs to be placed in the right spot in order to work. That depends on your shell.
If use bash, you should place it at the end of the .bashrc file in your home directory. This is the most likely possibility.
If use zsh (or oh-my-zsh), than .zshrc is the file you want to edit.
After adding the script, you only have to restart the terminal and you will be ready to action.

Result

This what you can expect to see as notifications.
On success.
On cancelation.
 
On failure.

Conclusion

That was it. You should now be notified on your build results as soon as the building ends. On a related note, if you are using linux or mac and you are avoiding aliases, I strongly suggest you to give them a try as they can really make your life a little easier. If you are using window, tough luck, frankly cmd is one of the main things that drove me away.

Hope you enjoyed the post, let me know if you feel that something is missing, or that it could be done easier/better.

Comments

  1. And our personal previous research on unlawful playing utilized a readable transformation method . It provides completely different coupons and bonuses for the users and that will increase the probabilities of wins as nicely. Are you looking ahead to 안전바카라 some reliable assets to play Casino Korea on? If you might be} about to say yes, for these questions, we shall be happy assist you|that will help you|that can help you} out in the identical. We will let you know right here the best method to earn cash on-line by playing in} on line casino Korea on one of many trusted platforms and that is 우리카지노.

    ReplyDelete
    Replies
    1. Ahoj, moc nechápu, jak mohou čeští hráči hrát v korejském kasinu. Je to vůbec možné? Vždyť je to na druhé straně planety. Vypadá to, že by tam byla spousta komplikací s registrací, vkladem a výběrem, ne? Lepší je přečíst si recenzi na Bizzo Casino v Česku a zahrát si tam v demo režimu. Navíc je zcela zdarma, nevyžaduje žádné investice.

      Delete

Post a Comment

Popular posts from this blog

Automatic jsp recompile on Jboss AS 7

Password hashing in Java

Running scripts written in Clojure as an executable using Inlein