blob: bb1764825cbd0a7d6da468c05e3aaf666c761eb7 [file] [log] [blame]
#! /bin/bash
function ebr () {
mvn ebr:create-recipe -DgroupId=$1 -DartifactId=$2 -Dversion=$3 -DbundleSymbolicName=$4
}
# Edit these as needed
GIDS=(
org.hamcrest
)
VERSION='2.2'
ARTIDS=(
hamcrest
)
BSNS=(
org.hamcrest
)
for (( i=0; i< ${#ARTIDS[@]}; i++ )); do
ebr ${GIDS[${i}]} ${ARTIDS[${i}]} ${VERSION} ${BSNS[${i}]}
done