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