Skip to content
Permalink
4c92353f95
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 35 lines (26 sloc) 920 Bytes
#!/usr/bin/env bash
numArgs=$#
set -e -o pipefail
function die() {
MESG="${1:-Died}"
echo "${MESG}" >&2
exit 1
}
if [[ !$numArgs -gt 0 ]]; then
die "Please supply a version number e.g. 0.0.1"
fi
group="de.mpg.shh"
artifact="util-properties"
version=$1
shift
lein jar
lein localrepo install target/${artifact}-${version}.jar ${group}/${artifact} ${version}
# /Users/clayton/.m2/repository/de/mpg/shh/util-properties/0.0.1/util-properties-0.0.1.jar
# create sha1sums for the jar and pom
group_path=$(echo "${group}" | tr "." "/")
jar_path="${HOME}/.m2/repository/${group_path}/${artifact}/${version}/${artifact}-${version}.jar"
jar_sum_path="${jar_path}.sha1"
pom_path="${HOME}/.m2/repository/${group_path}/${artifact}/${version}/${artifact}-${version}.pom"
pom_sum_path="${pom_path}.sha1"
shasum ${jar_path} | cut -d ' ' -f 1 > ${jar_sum_path}
shasum ${pom_path} | cut -d ' ' -f 1 > ${pom_sum_path}