I've completely switched all my projects from Ant to Maven, and it really makes my life easier when managing large projects with lots of subprojects and all sorts of internal or external dependencies. I created a Firefox bookmark the other day, it makes my life even easier when searching for packages I want to add to my projects. The bookmark is a one-line JavaScript code that asks for the package name when clicked, creates a Google search URL and redirects your page right away.
Here's what I did, I created a bookmark using Firefox's bookmarks manager and used the following line as the location.
javascript:var q=prompt(%22Please enter keywords%22);if(q!=null){window.location='http://www.google.com/search?q=site%3Aibiblio.org+maven2+'+q;}
No comments:
Post a Comment