blob: e30491729e32446a2faa03c6f6ccce4201960740 [file] [log] [blame]
#! /bin/bash
function ebr () {
mvn ebr:create-recipe -DgroupId=$1 -DartifactId=$2 -Dversion=$3 -Dclassifier=$4 -DbundleSymbolicName=$5
}
# Edit these as needed
GID='xerces'
VERSIONS=(
2.12.1
)
ARTIDS=(
xercesImpl
)
BSNS=(
xercesImpl
)
for (( i=0; i< ${#ARTIDS[@]}; i++ )); do
ebr ${GID} ${ARTIDS[${i}]} ${VERSIONS[${i}]} "${CLASSIFIERS[${i}]}" ${BSNS[${i}]}
done