Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

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

...

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.

...

Code Block
xml
xml
<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.

...

Profiles for Dependencies

...

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:

Code Block
xml
xml
<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>

...

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, however regardless of the <inherit> and @inheritByDefault flag, the plugins from the current pom are always inherited into the profile as conceptually for the user, it is just overlayed, not inherited.

Code Block
xml
xml
<profile>
  <id>jdk-1.4</id>
  <build>
    <plugins>
      <groupId/>
      <artifactId/>
      <version/>
      <configuration>
        ...
      </configuration>
    </plugins>
  </build>
</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 modelwill be supported by profile specifications in various locations (noted inline):

  • build (pom.xml)
    • plugins
    • pluginManagement
  • dependencies (pom.xml)
  • dependencyManagement (pom.xml)
  • distributionManagement (pom.xml)
  • repositories (pom.xml, profiles.xml, settings.xml)
  • pluginRepositories (pom.xml, profiles.xml, settings.xml)
  • modules (pom.xml)
  • reports (pom.xml)
  • configuration (profiles.xml, settings.xml)

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.

Info
titleUPDATE

build as specified inside of a profile is not a full implementation of the traditional build POM element. This build is really another class in the model - from which the POM build is derived - and only allows the plugins and pluginManagement subelements when defined here. This sidesteps any issues with secondary validation after the pom.xml is parsed in this case.

Inheritence and Transitivity

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).

For this reason it is unimportant if the IDs of profiles match or not, unless they are to be specified on the command line.

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.

...

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:

...

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.

Preset Profiles

It should be 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.

This will be done by some special activation tags (the format of which is yet to be completely decided), for example:

Code Block
xml
xml

<profile>
  <id>hsqldb</id>
  <activation>
    <property>hsqldb.enabled</property>
  </activation>
  <dependencies>
    <dependency>
      <groupId>hsqldb</groupId>
      .
      .
</profile>
Code Block
xml
xml

<profile>
  <id>jdk-1.4+</id>
  <activation>
    <jdk>1.4+</jdk>
  </activation>
  <build>
    <pluginManagement>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.4</source>
      .
      .
</profile>

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.

...

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:

...

.

...

...

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

...

  • for deployment (dev, test, qa, production)
  • for dependency resolution (different use of snapshots mostly)
  • affect on local repository

...

  • eg local system paths for certain plugins

...

  • .

...