|
April 2005
[
mkleint
]
08:00, Thursday, 21 April 2005
I've spent some time figuring this out, hopefully will save time of people reading this. After endless hours and hints from coworkers, I figured that the problem was cause by a visible glasspane which was painting the wait cursor. Funny enough the visibility of the wait cursor correlates with the visibility of the progress bar in my case. Ensuring the glasspane stays invisible is hard to achieve. And it did work on Mac. The reason for that is that Apple's JDK enforces heavyweight popup. Oh, I didn't tell you that yet. Hope that helps.
[
mkleint
]
19:54, Saturday, 16 April 2005
Check out the epic saga of a lost PET bottle at Prague Sun site. (or was it stolen/abducted ?)
[
mkleint
]
21:10, Sunday, 3 April 2005
A few days ago, I was blogging about features that are part of Maven and it's javadoc plugin but are not used. Today I figured that the javadoc plugin has more suprises in the sleeves. It includes features that don't seem to be described anywhere on the maven-javadoc-plugin site.
[
mkleint
]
08:25, Friday, 1 April 2005
While Maven provides a lot of features in various plugins, some of them seem not to be used at all. One example I've encountered lately is javadoc:upload. If you try to google ibiblio.org's repository for javadocs uploaded, you won't find *any*. Well, there a 2 or 3 examples of javadocs but these were not uploaded using the javadoc:upload goal apparently because they are in the wrong place. Why do I write about it? Since Mevenide 0.3 (Netbeans version) I've looked up javadocs for project's dependencies in the local repository and made them available to the project. The IDE then can enhance the code completion for the classes of that dependency. Version 0.6 now allows to check the remote repository for the javadocs and downloads them if available. (Screenshot here ) Unfortunately I've written the feature without consulting Google first. Makes me wonder how many other Maven features end up being unused. Is it because there was no real benefit in uploading them or is the whole repository upload workflow not streamlined enough? Or even flawed? |