Trying to refresh my Python knowledge in a round of CodeAbbey. It’s good practice. Join me! Share this: 

Code Abbey #1 – Minima


Successful work requires fast feedback. Independent of what you’re doing, you want to know as fast as possible how you’re holding up. Everything else is based on this feedback, so you better get it! ► All My Insights Share this: 

Insight of the Week #10 – Fast Feedback


While playing with deployment to GitHub repositories, I figured out some interesting property of the method I presented in the previous episode: Deployments deletes all previously deployed files. While this may not be a problem with snapshot repositories, it certainly is for release repositories. But thanks to git tagging, there’s […]

Maven in Eclipse #15 – Release to GitHub



Choosing the right architecture is difficult. I think that choosing the right one for your future system is even impossible. Whatever fits now may not fit tomorrow. But that means you should change it then. Not now! ► All My Insights Share this: 

Insight of the Week #09 – The Right Architecture


You asked me how you can use a GitHub repository as a Maven repository. I figured it out and here it is: Deploying Maven artifacts to a GitHub repository is not even that difficult! ► All Maven Episodes Share this: 

Maven in Eclipse #14 – Deploy to GitHub


Ever loose sight of the big picture while diving into some particular approach for solving your problem? Here’s how I mitigate this. ► All My Insights Share this: 

Insight of the Week #08 – Timeboxing



Maven caches dependencies locally, to reduce load on repositories. If we reference a Snapshot repository and want dependencies to always resolve to the newest deployed version, we have to tell Maven to do so. ► All Maven Episodes Share this: 

Maven in Eclipse #13 – Snapshot Repos



Now we’ve deployed/released our stuff to repositories. What remains to be done is referencing these repositories from another project, to resolve the dependencies from it. ► All Maven Episodes Share this: 

Maven in Eclipse #12 – Reference Repos