|
|
![]() Maven's Strengths and Weaknesses as a Dependency Management System
For many Java teams, switching to Maven will introduce them to formal dependency management. Maven actually does a pretty decent job and is a fantastic system out of the box for informal projects. However, for teams looking to implement rigorous component reuse policies, Maven falls short.
Last month, in our article Chaperoning Promiscuous Software Reuse, we reviewed four elements of a successful strategy for managing components. Briefly, these elements are:
Basic MavenBasic Maven points to a common Maven repository hosted centrally. Various open source projects publish their releases to this repository and a developer can configure her build file to depend on these releases. At build time, the artifacts are automatically pulled down into the workspace and the build can produce a report of what was used.This is actually a pretty good start. If the build script depends on exact versions, the team has some traceability. The Maven repository is an official repository of artifacts (a DSL) used by the team although the team does not control it. Unfortunately, there's little protection against a developer using a rogue component, but it's easier to do the right thing than the wrong thing, and that goes a long way. The major failing here is that the team does not control the repository. Rather, it is an arbitrary resource in the cloud. This eliminates the team's ability to test artifacts prior to including them in the DSL, and there's no guarantee that an artifact used by a production release today will still be available from the repository tomorrow unaltered and intact. Bring the Repository in HouseWhat's needed is to bring the repository in house. While this can be done without special tooling, there are a handful of decent Maven repositories that provide the team more control. Nexus and Artifactory are two of the major choices here. They provide security over who can publish artifacts to the repository as well as more sophisticated storage and indexing than a simple file system.With one of these repositories, the team has it's own DSL they control and can ensure that only approved versions of libraries are made available to the team. Again, as long as the team does not use snapshot dependencies a basic audit trail of what is in a build is available. Impact analysis reports indicating which projects have used a given component version are a little more difficult. Protecting the code-base from a developer checking an arbitrary library into source control is still a manual process, but Maven does discourage the practice by making reuse of a library from the repository more straight-forward. Other Concerns with Maven Dependency ManagementNo ability to depend on the newest version with traceabilityMaven draws a strict line between depending on a released version of a component and depending on the latest built version. Depending on the latest build version is a common practice in multi-component continuous integration. Maven's strict line allows for either approach to be used, but only provides traceability when dependencies are based on releases. In multi-component CI, teams often do not want to release particular components for reuse upstream, but rather consider every successful CI build (with passing unit tests) a mini-release.
Functional tests performed at a system level determine the quality of the entire dependency graph (the application). In these cases, it's only after testers validate a system build, that a release will be pushed out (ideally the binary that was tested) and full traceability to every component is valuable. That Maven discourages mutli-component CI through the arbitrary separation of Releases and Snapshots is unfortunate.
Inability to depend based on statusSometimes, teams don't want to depend on either the latest build of a component nor a specific version. Rather, they want to depend on the latest version that has passed some sort of quality gate. Perhaps a validation from a testing team, or approval from a release manager. Maven has no real concept of statuses on components (version numbers and component names are pretty much it) so status based dependencies are out of the question.2 Talks At ESDC I'm traveling to Atlanta this week but the first week of March I will be back in the San Francisco Bay Area for a new conference, ESDC, the Enterprise Software Development Conference. While this is is a new conference the timing is familiar; ESDC has taken over the traditional calendar-slot of the now defunct SD West. If you’re interested in attending you can use my last name as a discount code when you register to get $100 of the full conference pass. You can also register to attend the expo for free as long as you register by February 28th.I'll be there in two different roles. First is as Urbancode "booth babe" showing off AnthillPro on the Expo floor Tuesday and Wednesday. I’ll also be giving two talks, both on Wednesday. I start the day bright and early with #605 Going Lean: Slash Waste with Build & Deployment Automation at 8:15 am, and finish the day at 4 pm with #906 Creating Habitable Code: Lessons in Longevity from CruiseControl. Lean software development has been a hot topic for me lately, as members of BayXP and the Silicon Valley Agile Meetup know, while practices for creating long-term sustainable code has been a long term sustained interest. I’ve delivered the Habitable Code talk before but this’ll be the first time doing it solo, without Paul Julius by my side. AnthillPro Security for AuditorsEric Starr over at Anthillizer provides a how-to for creating an Auditor Role in your AnthillPro. He suggests default "read" or "view" permissions across the board but no execute permissions. Seems like a reasonable strategy for most teams. Anthillizer is on a bit of a security kick recently and provided some cheat sheets for security settings. Configure a Multiplatform Build in AnthillPro
A common build scenario is to need to compile on several different platforms. The basic build is all the same, but a couple parameters change platform to platform. Here we look at the basics of configuring this kind of scenario in AnthillPro.
You need:
Sonar Integration for AnthillPro
A Sonar plugin for AnthillPro is now available through Urbancode's Supportal (support portal). This plugin pushes build generated metrics to the Sonar dashboard automatically when the build completes. When using Sonar, continuous integration builds can feed metrics over to Sonar. The same metrics are generally tracked on a per-build basis in AnthillPro as well.
Sonar is easiest to fit into your process if you are using Maven. However, the integration is designed to support non-Maven builds through the Sonar Light interface. Stop Working in Silos
Over at the CMCrossroad's Community blog , Julian Simpson (aka the build doctor) points out that IT shops tend to have developers, testers, release managers and sys admins working in separate silos which contributes to waste. I would add that it contributes to misery as well.
One of my favorite aspects of AnthillPro is that it tends to get everyone using the same tool while providing audited automation. This tends to help teams break down the walls in silos. The hard work is still interpersonal. Conway's Law explains why we have manual deploymentsand why they'll be automated in the future
As we covered in our recent webcast on automated deployments, manual deployments are pretty obviously inferior to automated deployments. And yet, as an industry we still have a lot of manual deployments. This counter-intuitive fact demands explanation. Conway's Law provides one.
|