Skip to content
Snippets Groups Projects
Commit d8189966 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added license bash script

parent 17319c63
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#
# Copyright (c) 2014 Leiden University Medical Center - Sequencing Analysis Support Core <sasc@lumc.nl>
# @author Peter van 't Hof <p.j.van_t_hof@lumc.nl>
#
DIR=`readlink -f \`dirname $0\``
MODE=check
if [ $1 ] ; then
MODE=$1
fi
mvn -f $DIR/public/pom.xml license:$MODE -Dlicense.header=$DIR/public/LICENSE
mvn -f $DIR/protected/pom.xml license:$MODE -Dlicense.header=$DIR/protected/LICENSE
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment