devxlogo

Keep Your Maven Projects Portable Throughout the Build Cycle

Keep Your Maven Projects Portable Throughout the Build Cycle

f your software development lifecycle is anything like mine, it has several phases that each requires its own project configurations?which can make moving a project through all the different phases a challenge. For instance, your development phase may require you to connect to a local database, but your integration test environment database won’t be local. And your test database will certainly differ from your production database (for your sake, I hope it does.).

Apache Maven 2 can help. It enables you to create a single portable Project Object Model (POM), which will relieve the integration tester and the deployment team from making changes to the project. In addition to providing enforcement of project structure, project dependency management, project encapsulation, built-in site generation, and simple integration with tools such as Subversion and Continuum, Maven aims to make portability as simple as possible while maintaining flexibility. To that end, Maven has two main tools to deal with build portability issues: properties and profiles. (See “Sidebar 1. From Make to Maven” for a closer look at the history of Java-build portability.)

Properties and Profiles

Maven properties are exactly like properties in Ant. They are placeholders for values, some of which are pre-populated. Four different styles of properties are available:

  1. env.X?Prefixing a variable with “env.” will return the shell’s environment variable. For example, ${env.PATH} contains the $path environment variable (%PATH% in Windows).
  2. project.x?A dot (.) notated path in the POM will contain the corresponding element’s value. For example, 1.0 is accessible via ${project.version}.
  3. System Properties?All properties accessible via java.lang.System.getProperties() are available as POM properties, such as ${java.home}. (See “Sidebar 2. Viewing Property Values” for a shortcut to debugging your POM.)
  4. x?Set within a element or an external file, the value may be used as ${someVar}.

Along with properties, Maven has added the concept of build profiles as a solution for making sweeping changes to the POM based on environmental factors. The common practice in Ant-based builds is to use properties that dictate how a project will build across environments. Maven simplifies this by removing such procedural approaches with a declaration: “If some profile is active, then use these settings.” You can activate profiles via:

  • Activations: For example, “this profile will be activated if compiling with JDK1.4.”
  • Command line: Using the argument -P
  • Active profiles: An element in the “settings.xml” file containing an profileID element

For more details on profiles, I highly recommend you read the Maven site’s guide.

Levels of Portability

Now that you have the basic tools under your belt, you can determine precisely on which level of portability your Java project falls. Maven can help you deal with the four common levels of Java portability and their corresponding concerns:

  • Wide
  • In-house
  • Environmental
  • Non-portable

Wide

In the Maven world, anyone may download a wide portability project’s source, and then compile and install it (sans modification) to the POM or requirements beyond standard Maven. This is the highest level of portability; anything less requires extra work for those who wish to build your project. This level of portability is especially important for open source projects, which thrive on the ability for would-be contributors to easily download and install.

As you may imagine, being the highest level of portability makes it generally the most difficult to attain. It restricts your dependencies to those projects and tools that may be widely distributed according to their licenses (such as most commercial software packages). It also restricts dependencies to those pieces of software that may be distributed as Maven artifacts. For example, if you depend upon MySQL, your users will have to download and install it; this is not widely portable (only MySQL users can use your project without changing their systems). Using HSQLDB, on the other hand, is available from Maven Central repository, and thus is widely portable.

In-House

For most non-trivial software efforts, in-house portability is the best you can hope for. The majority of software projects fall under this listing, either for an open source development team or a closed-source production company. The center of this level of portability is your project’s requirement that only a select few may access an internal (in-house) remote repository. In-house does not necessarily mean a specific company. A widely dispersed open-source project may require specific tools or connection access; this would be classified as in-house. (See “Sidebar 3. More About In-House Portability” for an expanded discussion of this level.)

Environmental

Maven created profiles for the environmental portability level, which largely concerns code and resource generation. As an example, consider a test environment that points to a separate database from that of production. When built on a test box, therefore, at least one resource file (or code?hopefully not) must be manipulated. If a file must be altered to successfully build and run on a specific environment, then the project is at best environmentally portable. A project that contains a reference to a test database in a test environment, for example, and a production database in a production environment, is environmentally portable. When you move to a different environment, one that is not defined and has no profile created for it, the project will not work. Hence, it is only portable between defined environments.

The example project is environmentally portable.

Non-Portable

A non-portable project is buildable only under a specific set of circumstances and criteria (e.g., your local machine). Unless you have no plans on porting your project to any other machines?ever, it is best to avoid non-portability entirely. Non-portable is similar to environmental portability with a single definition; the project may be built in only one environment setting.

See “Sidebar 4. Where to Draw the Line?” for help on deciding on which level your project should fall.

Solving Common Portability Problems in Maven

After defining the level of portability you need, the problem becomes moving up to or above that level. If your project is self-contained and your audience can build and run it without any modifications or installations beyond standard Maven, then congratulations! Your project is widely portable; you may now stop reading. However, if your project is non-trivial then please continue.

Avoid System Scopes

In the dependency element, avoid provided and system scopes, such as:

          com.closedsource      sometool      1      system      /usr/lib/sometool.jar    

If the system scope is unavoidable, you should use a property for systemPath. This allows you to set/alter that property per build environment. The best method, however, is to deploy the dependency to an in-house Maven repository (shown below) and use the dependency as a standard scope. (See “Sidebar 5. Grouping Absolute Values” for an addendum to the previous statement.)

Filter is Your Friend

Do not be shy about using filters. Filters are Maven’s way of externalizing property replacement (marked in the build lifecycle as “*-process” phases) into easily portable and configurable properties files. Just add a list of standard Java properties files you wish to filter on in build, like this:

          datasource.properties    

In the example project, the “datasource.properties” exists in the base build directory (${buildDir}) and contains the “name=value” pair for the “jdbc.url”:

jdbc.url=jdbc:driver://localhost/myDB

When resources are filtered, the project replaces all matching property names with their corresponding values, taking the filter list into account. The resources to be filtered are defined by the “resources” build element. For example, this block says that your project has XML resources that should be filtered, and that the results will be put into the META-INF directory:

                  true        src/main/resources        META-INF                  *.xml                  

You can run the example in the sample project by executing the “process-resources” phase in the command line. It will convert the “datasource.xml” resource file from this:

  ${jdbc.url}

Into this (in the “target/META-INF” directory):

  jdbc:driver://localhost/myDB

Environmental Portability with Profiles

As a general rule, try to make one profile per environment. Unless you are building on more than five or so environment types, I suggest putting the profile in the POM. Then you may activate the desired profile via the -P argument on the command line. You can test which profiles are currently active with the “help” plugin, like this:

mvn help:active-profiles

You can make environmental changes even simpler by utilizing the “settings.xml” file. The example project contains three profiles: env-dev, env-test, and env-prod. If you wish to ensure that the env-test profile is always activated on your test environment, add the activeProfile to that environment’s “settings.xml” file, as follows:

  ...      env-test  

For every environment-specific project, name the test profile env-test. Maven will simply ignore the “activeProfile” line if it does not exist. No harm, no foul. The sample project contains a “settings.xml” file. Feel free to experiment.

Profiles, Profiles, Everywhere

What if you have many more profiles? Some projects require subtle build alterations for several clients, sometimes hundreds. The thing to do in this scenario is create “profiles.xml” files that may be copied at the necessary build time. A “profiles.xml” file is exactly like a “pom.xml” profiles element, containing one or more profile elements. It is merely externalized. For example, the profile for your first client may be:

      client-0001          true                    blue.css            default     

Create one profile per “profiles.xml” and make it activeByDefault. Its very existence will ensure that the profile is utilized in the build. If the above “profiles.xml” file is in the base build directory, the help:active-profiles goal will print this:

The following profiles are active: - client-0001 (source: profiles.xml)

Use Profiles Not Properties

(This advice is directed toward in-house projects with fixed environments, not a widely portable open source or plugin project.)

A minor task that I often insist upon is creating environment profiles rather than passing in command-line properties, even if the profile consists of only one property. The logic behind this is simple. If you created the following profile for an environment:

            env-test              /testbox/app            

You command-line activation would be this:

mvn install -P env-test

instead of this:

mvn install -Dinstall.location=/user/local/test

Now imagine that you need to add another property. The manual property settings will become longer, while the profiled POM command-line remains fixed, regardless of the number of properties you may add in the future:

mvn install -Dinstall.location=/user/local/test -Dnew.prop=true

This becomes important if you decide to use a continuous integration server like Continuum.

Avoid Project Structure Funkiness

Injecting a lot of Ant code via the “maven-antrun-plugin” in your POM is a leitmotif of non-portability. If you find that other Maven plugins routinely fall short of your requirements, it is smart to look first at your project structure.

This leads me into another nefarious piece of Maven non-portability: project nesting. For example, nesting WARs in EARs like so:

myEar  pom.xml  META-INF/application.xml  myWar    src/MyServlet.java    WEB-INF/web.xml

Before Maven, this was a common setup for projects that consisted of a WAR with a single EAR. Ant?enforcing no structure at all?happily obliged. Sometimes people attempt to port structures like this to Maven and build projects via embedded Ant or with the “maven-assembly-plugin”. Say you write such a project for a single customer. Then, along comes a new customer who requires a different EAR configuration. Your WAR is logically a separate project, but porting it into another EAR proves quite difficult. Your ability to port this project to a new customer is now limited.

This is an example of attempting to force Maven non-standard project structures into the Maven framework. In this particular example, you should split the EAR and WAR into separate projects, like this:

myEar  pom.xml  src/main/resources/META-INF/application.xmlmyWar  pom.xml  src/main    java/MyServlet.java    resources/WEB-INF/web.xml

Have a new client with a new EAR? No problem, just add a new EAR project with a dependency on myWar. Don’t worry; you’ll learn to love it.

Create Your Own Public Repository

If your project has dependencies that exist on a repository other than Maven-central, consider creating a public repository of your own. This will require a public Web server, some mechanism to deploy files to that Web server’s filesystem, such as an FTP server, and a few changes to your POMs. Many articles on the Web explain how to install and set up your transport mechanism of choice, but this example uses WebDAV to accept project uploads. After your servers are configured, create a parent POM from which all of your projects may inherit. This makes deployment much simpler. Add the following to a parent POM:

  my-parent  ...                    org.apache.maven.wagon        wagon-webdav        1.0-beta-1                        codehaus-mojo      Repository Name      dav:https://dav.codehaus.org/repository/mojo/      

The URL prefix corresponds to one of the supported Wagon providers, the mechanism that Maven uses to transport your files to the correct repository. (Click here for the list of supported provider types.) Besides specifying the distribution management, you must add a build extension corresponding to the transport mechanism you wish to use. In this case, WebDAV, so I added “wagon-webdav”.

In order to control who may deploy their builds to this server, you will probably assign your core developers usernames. Each user can set up his or her settings.xml files (under their Maven install conf or local repository directories) to the matching repository ID, as follows:

  ...            codehaus-mojo      joe      c4ntGuessThi5        ...

Requiring a change to your developer’s local setup in this way does not really affect portability. You are concerned with only your client builder’s ability to build and install without making local changes. That does not mean you want to make it easy for them to deploy to your repository.

Now for any project that depends upon other deployed projects, you can add the public face of your repository (made public by a simple Web server, such as Apache HTTP Server) via the repository element, like this:

  ...            codehaus-mojo      http://repository.codehaus.org/org/codehaus/mojo/      

Your project is now widely portable. If you wish to be merely in-house portable, you can restrict network access, effectively creating an exclusive club for your repository (all you need is the secret handshake).

In-House, Commercial-License Remote Repository

Sometimes licensing issues prevent projects from being as portable as they could be, forcing your teams to manually download and install the artifact. Normally, this would earn your project a spot in the non-portable category, but the Maven team has reduced this issue to only a minor annoyance. Say that you licensed a closed-source JAR named “sometool.jar”. You could install it within an in-house repository as follows, allowing other coworkers to access the JAR just like any other Maven artifact:

mvn deploy:deploy-file -DgroupId=com.closedsource -DartifactId=sometool -Dversion=1.0 -Dpackaging=jar 
-Dfile=sometool.jar -DgeneratePom=true -Durl=scp://inhouse/maven -DlocalRepository=inhouse

Viola! Your non-portable project is now portable in-house, subject to licensing restrictions.

Getting javax.*

All javax.* packages once required you to manually download and install the artifacts from the Sun Web site due to licensing restrictions. This is no longer the case, as java.net has created public Maven 1.x and 2.x repositories containing some packages, such as javax.mail and javax.persistence. You may access both repositories with the following added to your project’s POM (notice the layout element in the Maven 1.x repository):

  java.net  https://maven-repository.dev.java.net/nonav/repository  legacy  maven2-repository.dev.java.net  Java.net Repository for Maven  https://maven2-repository.dev.java.net/nonav/repository

Your once non-portable project using the email API is now widely portable, with no manual installs required.

The Dream of Portability

Thanks to Maven, you can begin standardizing the build process itself. While not perfect, Maven is taking a giant leap forward for Java development, making the dream of pure, simple portability a reality.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist