Skip to content

Instantly share code, notes, and snippets.

@seratch
Created July 13, 2013 00:41
Show Gist options
  • Save seratch/5988869 to your computer and use it in GitHub Desktop.
Save seratch/5988869 to your computer and use it in GitHub Desktop.
Finding scct dependency in Compile
BASE_URL=https://oss.sonatype.org/content/repositories/releases/com/github/seratch
VERSION=1.6.5
for SCALA_VERSION in 2.9.1 2.9.2 2.9.3 2.10
do
for NAME in scalikejdbc scalikejdbc-interpolation-core scalikejdbc-interpolation-macro scalikejdbc-interpolation scalikejdbc-config scalikejdbc-test scalikejdbc-mapper-generator-core scalikejdbc-mapper-generator scalikejdbc-play-plugin scalikejdbc-play-fixture-plugin
do
URL=${BASE_URL}/${NAME}_${SCALA_VERSION}/${VERSION}/${NAME}_${SCALA_VERSION}-${VERSION}.pom
echo ${URL}
curl --silent ${URL} | grep -3 scct
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment