Skip to content

Instantly share code, notes, and snippets.

@falkorichter
Created May 22, 2014 20:12
Show Gist options
  • Select an option

  • Save falkorichter/c85e5c08a6226267b686 to your computer and use it in GitHub Desktop.

Select an option

Save falkorichter/c85e5c08a6226267b686 to your computer and use it in GitHub Desktop.
generate gradle 1.10 docset
#!/bin/bash
mkdir .temp
pushd .temp
wget https://services.gradle.org/distributions/gradle-1.10-all.zip
wget http://kapeli.com/javadocset.zip
unzip gradle-1.10-all.zip
unzip javadocset.zip
popd
.temp/javadocset gradle-1.10 .temp/gradle-1.10/docs/javadoc
open gradle-1.10.docset
rm -rf .temp
@falkorichter
Copy link
Copy Markdown
Author

of course, this only runs on a mac! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment