blob: 7f826e0a442b2a293e1d6ca0fc7c25775785de1d [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.mandas
)
VERSION='3.2.1'
ARTIDS=(
docker-client
)
BSNS=(
org.mandas.docker-client
)
for (( i=0; i< ${#ARTIDS[@]}; i++ )); do
ebr ${GIDS[${i}]} ${ARTIDS[${i}]} ${VERSION} ${BSNS[${i}]}
done