-
Recent Posts
Category Cloud
Blogroll
Serenity
Archives
- September 2017
- June 2017
- May 2017
- January 2017
- May 2016
- November 2015
- August 2015
- June 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- October 2014
- August 2014
- July 2014
- June 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- August 2012
- March 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
Meta
Category Archives: craftsmanship
Findbugs and Android
Recently I needed to add FindBugs to a android-maven build. This itself is easy enough. The above will analyse the classes as part of the package proecess. This is fine, however, the generated R.java file typically produces class names that … Continue reading
Posted in android, clean code, craftsmanship, maven
Leave a comment
Jacoco, Tycho, and Coverage Reports
It’s been a while since I posted here. Most of my postings are now on Google+ or via twitter. However, neither place does well for code snippets so here I am. If you are using Tycho and want Java … Continue reading
Posted in build, craftsmanship, eclipse, maven, release engineering, testing, tycho
11 Comments
Refactoring: Maintainable Web Services
One of the problems I have with WSDL based web services is the fact that operations are typically generated into one big interface file that must be implemented. I’ve seen WSDLs with 50 to 70 operations, and this leads … Continue reading
Posted in clean code, craftsmanship, eclipse, refactoring, turmeric
3 Comments
Push Button Builds.
Kim Moir had a good post on busting some build myths, and continuing the “MythBusters” analogy, I think we need to revisit a one of the myths. First let me say that I totally agree with Kim, that being in … Continue reading
Posted in ant, craftsmanship, eclipse, maven, release engineering
11 Comments
Eclipse Parent POM and Static Code Analysis
If you are running an open source project at eclipse.org, and are using Maven then we have some good news for you. A newly deployed Parent POM has been created for your use. To use the parent pom, you … Continue reading
Posted in clean code, craftsmanship, eclipse, maven, tycho
5 Comments
Enable Code Coverage for Integration and Unit Tests using Cobertura and Maven
On the turmeric project, we maintain a nightly dashboard. On the dash board we collect statistics about the project, including code coverage, findbugs analysis and other metrics. We had been using the Maven EMMA plugin to provide code coverage, … Continue reading
Posted in clean code, craftsmanship, eclipse, maven, turmeric
6 Comments
Clean Code irk
Say you have something like the following in your code: The above is pretty basic and is probably used even in your own code. While the above works, a more meaningful API could be something like the following. Yes the … Continue reading
Posted in clean code, craftsmanship, eclipse, java, turmeric
9 Comments
Checkstyle JavaDoc Compliance Checking
Ever since I read Clean Code, I’ve been more aware of the uncleanliness of the code I write, and more importantly, the code I have to maintain. Although the book recommends against JavaDocs for variables, I find it necessary … Continue reading
Posted in clean code, craftsmanship, eclipse, turmeric
2 Comments
>The Importance of External Builds
>Over reliance on an IDE for builds can lead to a false comfort factor. The importance of a build that isn’t affected by any particular IDE configuration or way of building was beaten home this weekend. I was working on … Continue reading
Posted in build, clean code, craftsmanship, eclipse, release engineering
Leave a comment
>Back to Scrum
>Unfortunately in my day-to-day work until recently I had to work on some projects that had more resemblence to Waterfall methodology and less to do with Agile methodology. Fortunately, that is changing and I’ll be talking a bit more about … Continue reading
Posted in agile, craftsmanship, scrum
Leave a comment