You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Build profiles are an important concept for unifying configuration differences between different environments. They also should capture information across all aspects of the POM.

Proposed Design

General Objectives

  • All profile information should be kept together to create a single view of it, rather than dispersing it throughout the POM
  • Based on the design decisions below, the profile is a subset of a POM that is applied onto the current POM as a form of inheritence.
  • Each profile has a globally unique identifier.

Naming Conventions

To help with consistency of IDs across projects, profile IDs should follow some conventions. These could be partially enforced if necessary.

Part 1

Part 2

Description

jdk

1.4

Features for JDK 1.4 only

jdk

5.0

Features for JDK 5.0 only

env

qa

Targetting QA environment

env

test

Targetting test environment

env

dev

Targetting development environment

env

prod

Targetting production environment

os

windows

Targetting Windows

os

linux

Targetting Linux

os

solaris

Targetting Solaris

user

brett

Settings specific to user brett

host

localhost

Settings specific to the current machine

custom

property

Custom environment definition

Multiple Profiles

Multiple profiles can be active simultaneously. Each profile selected is cumulative. This allows each profile to do specific things, and various combinations do not need to be created. There is no need for duplication or special inheritence of profiles.

To activate a profile, they can be added to settings.xml, or by the -p profile(s) command line option. The specification in settings.xml would be:

<activeProfiles>
  <activeProfile>jdk-1.4</activeProfile>
  <activeProfile>os-windows</activeProfile>
</activeProfiles>

Preset Profiles

Given the standardised names, it is possible to preset the activation of some profiles. Eg, JDK, OS, host and user profiles could all be made active based on the settings of the machine running the build. However, should any profiles be made active via settings.xml, this will override all of the existing ones, rather than add to them.

Likewise, specifying profiles on the command line will override all of those from settings.xml as well as any predefined ones.

Profiles for Dependencies

This allows some dependencies to be OS specific, JDK specific, etc.

Options:
1. Map a defined dependency to a particular implementation based on profile
2. Define new dependencies based on the profile.

Mapping would be as much work to specify and is less flexible, so the latter is the best choice.

Defining the profile of a dependency is not done in the dependency definition itself for the following reasons:

  • previous goal to keep all profile information together
  • same reason as for elimination of dependency properties - hard to manage over transitive dependencies, and awkward to specify more than one without making specification of just 1 verbose.

Proposed solution:

<profiles>
  <profile>
    <id>jdk-1.4</id>    <!-- Use the id of "default" if it is the profile to use when none is given -->
    <dependencies>
      <dependency>
        <groupId>bouncycastle</groupId>
        <artifactId>bouncycastle-provider</artifactId>
        <version>1.1.6-jdk14</version> <!-- The JDK portion may be part of the classifier instead (see other doc)
      </dependency>
      ...
    </dependencies>
    ...
  </profile>
  ...
</profiles>

This section should be added to the POM at the top level.

Profiles for Plugin Configuration

Plugin configuration and management can also be specified in the profile. Definitions here will add to the existing lists and merge as appropriate. For consistency - it behaves identically to inheritence.

<profile>
  <id>jdk-1.4</id>
  <build>
    <plugins>
      <groupId/>
      <artifactId/>
      <version/>
      <configuration>
        ...
      </configuration>
    </plugins>
  </build>
</profile>

This will always bind the plugin with this version. If a version is specified in both the main plugins section and one or more profiles, the versions must match or an error occurs.

All elements allowed in a profile

As previously mentioned, a profile is a subset of another POM. In modello, this can be achieved by the model and profile inheriting a common base class.

The following elements should be a part of the profile as well as the model:

  • build
    • plugins
    • pluginManagement
  • dependencies
  • dependencyManagement
  • distributionManagement
  • repositories
  • pluginRepositories
  • modules
  • reports

Note that build is included for the benefit of the plugin definitions, and that will bring along other elements such as finalName and outputDirectory. These can also be beneficial. One of the unexpected behaviours may be the ability to override sourceDirectory which will completely substitute a new tree. This is probably undesirable, and so may need to be forbidden by validation.

Inheritence and Transitivity

A fundamental issue with profiles operating across different projects will be having well known profile IDs. Generally, they will be better known over inheritence, but this is more important than those over transitive dependencies. It is important to use the definitions from above.

Note that the profiles are inherited, but only in such a way as they are applied to a parent POM before the inheritence of the parent and child is performed, so the settings required are already present. This ensures the proper precedence occurs (child and its profiles win over the profile of a parent).

Location of Profiles

The requirements listed that there would need to be all of the following:

  • per user
  • per project
  • global

Project based settings that apply to all users can be stored in pom.xml as previously shown.

For user specific settings that apply to a particular project, they should use a user-* profile ID. These can go into the POM (and be stored in SCM), or be in profiles.xml in the same directory (which may not be stored in the SCM).

profiles.xml are transient profiles that are for per-user customisations to an individual project. They are generally not stored in SCM, and are never deployed. Before of this, they are not inherited, except when a USD or reactor build is present that will locate them and match them to the parent POM.

For any settings that span multiple projects, the profiles need to be stored inside settings.xml instead of pom.xml.

These should take on a similar format, however is restricted to:

  • repositories (which are added to the list in the POM)
  • plugin repositories (As above)
  • general configuration properties

General configuration properties are used instead of allowing plugin configuration to be given. This avoids a settings file circumventing a POM. For example, the following general configuration may be given:

<settings>
  ...
  <profiles>
    <profile>
      <id>default</id>
      <properties>
        <tomcat5x.home>/usr/local/jakarta-tomcat-5.5.9</tomcat5x.home>
      </properties>
    </profile>
  </profiles>
</settings>

This will be made available to the POM interpolation, so could be used as configuration in a plugin:

<plugin>
  <artifactId>cactus-maven-plugin</artifactId>
  <configuration>
    <container>
      <id>tomcat5x</id>
      <home>${tomcat5x.home}</home>
    </container>
  </configuration>
</plugin>

The main drawback to this is that it requires some consistency of property naming - however this outways the problems of directly injecting plugin configuration from settings.

Resource Filtering

Under the above design, filtering can simply be a configuration element on the resources plugin (as per Kenney's patch, already available). The profiles will allow the introduction of different filter sets.

Lifecycle Binding

The plexus use case requires that a different goal be bound to the lifecycle. However, this does not entail any changes to the lifecycle design with the above solution. Instead, the goals would simply be added to the <plugins> section as needed in each profile.

Outstanding Issues

The following issues still require some resolution:

  • How to specify "JDK 1.4 and up" as a profile? And what about other combinations?
    • making the standard JDK profiles 1.4 and up is problematic as it gives no way to say "1.4 only" which is common
    • profiles are IDs, so something like jdk1.4+ is not suitable.

Additional Features

These are some thoughts on additional features that may or may not be made available:

  • m2 --display-profiles switch that will show all possible profiles from the pom, its parents, and transitive dependencies.
  • features to disable transient profiles in a deployment/release scenario to ensure the build is pure.

Original Requirements

  • offer a replacement for ./build.properties (the per user, per pom override, and the per user global override)
  • filtering of resources
  • different repositories
    • for deployment (dev, test, qa, production)
    • for dependency resolution (different use of snapshots mostly)
    • affect on local repository
  • plexus application use case (having a generated test runtime, and a release runtime with different settings)
  • m2 development use case (switching local repository, m2 home and settings by profile)
  • changes to dependencies (allowing jdk specific, operating system specific, debugging built versions of libraries)
  • modifications to the modules built (not convinced on this yet - http://jira.codehaus.org/browse/MNG-354)
  • different configuration per user/profile (http://mail-archives.apache.org/mod_mbox/maven-dev/200504.mbox/%3c1114638565.5813.422.camel@172.16.1.36%3e)
    • eg local system paths for certain plugins
  • some profiles are for a user (ie the build.properties replacements), others would be committed to SCM. These might even be shared across projects
  • there is a definite analogy to settings.xml
  • No labels