Skip to content

Instantly share code, notes, and snippets.

@darrenbuse
Created September 19, 2014 19:02
Show Gist options
  • Save darrenbuse/0ba51ad9830f2c6d5980 to your computer and use it in GitHub Desktop.
Save darrenbuse/0ba51ad9830f2c6d5980 to your computer and use it in GitHub Desktop.
Determine the version of Jar files when migrating old old projects
find . -iname '*.jar' -exec sha1sum {} \; | awk '{print $1}' | xargs -d '\n' -I £ curl "http://search.maven.org/solrsearch/select?q=1%3A%22£%22&rows=20&wt=json" | jq '.response.docs[0].id’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment