简述maven中的profiles

Profiles是maven的一个很关键的术语:profile是用来定义一些在build lifecycle中使用的environmental variations,profile可以设置成在不同的环境下激活不同的profile(例如:不同的OS激活不同的profile,不同的JVM激活不同的profile,不同的dabase激活不同的profile等等)。

定义Profiles

你可以把profiles定义在4个地方:

%M2_HOME%/conf/settings.xml,这是针对该部电脑的所有user的profiles,是global profiles,它会影响所有的maven project build

/.m2/settings.xml,这是针对per user的profiles,是user级的profiles,它会影响当前user的所有maven project build

定义在pom.xml文件里面,这是仅针对该project的profiles,是project级的profiles

profiles.xml,它和pom.xml在同一个目录下,也是project级的profiles,使用profiles.xml的目的是希望把profiles的设置从pom.xml里抽离出来设置。

定义在这4个地方的profiles中,涉及范围越窄的profiles会覆盖范围越宽的profiles。即:定义在pom.xml里profiles会覆盖profiles.xml的,profiles.xml的会覆盖/.m2/settings.xml的,/.m2/settings.xml的会覆盖%M2_HOME%/conf/settings.xml的。

不过请注意:设置在pom.xml里的profiles是最最推荐的,因为pom.xml会被deploy到reposiTory里,所以pom.xml里的profiles才会available for subsequent builds originating from the reposiTory or as transitive dependencies。而settings.xml和profiles.xml里定义的profiles不会被deploy到reposiTory,则有诸多限制,因此,只有下面几个profiles能够在settings.xml和profiles.xml里定义:

reposiTories

pluginReposiTories

properties

其他类型的profiles必须在pom.xml里定义(上面3个profiles也可以在pom.xml里定义)。

Pom.xml能够定义的profiles包括:

(not actually available in the main POM, but used behind the scenes)a subset of the element, which consists of:

激活Profiles

激活profiles有下列几种方式:

ExplicitlyThrough Maven settingsBased on environment variablesOS settingsPresent or missing files

1)通过mvn命令的-P参数来显示激活profiles,该参数值是profile id list(之间用逗号连接)。如:

mvn groupId:artifactId:goal -P profileId-1,profileId-2

2)通过在settings.xml里设置 element来激活(当然也必须在settings.xml里定义)

...         profile1  ...         profile-1...

列在里的profiles list会在每一个project执行时被激活

3)Profiles还可以基于detect到的build environment 的state来自动激活,而不需要象上面2种方式显式激活。这只需要在profile定义时使用 element。如:

       1.4      ...

上面的代码表示:如果JDK version start with 1.4 (eg. “1.4.0_08”, “1.4.2_07”, “1.4”),该profile会被激活

            debug          ...

上面的代码表示:如果存在system propertie “debug”,该profile会被激活。为了激活它,输入的命令类似于:

mvn groupId:artifactId:goal –Ddebug

            environment     test          ...

上面的代码表示:如果存在system propertie “environment”的值为test,该profile会被激活。为了激活它,输入的命令类似于:

mvn groupId:artifactId:goal -Denvironment=test

4)Profiles还可以基于OS setting来自动激活

           Windows XP    Windows    x86    5.1.2600        ...

上面的代码表示:如果OS为windows xp,该profile会被激活

5)根据某个file不存在而激活profile。例如下面定义的profile是在target/generated-sources/axistools/wsdl2java/org/apache/maven不存在时激活

            target/generated-sources/axistools/wsdl2java/org/apache/maven          ...

使用Profiles时要注意的2个问题

第一、external properties

不是定义在pom.xml里的properties都称为external properties。举例说明最明了:

pom.xml:

...            org.myco.plugins     spiffy-integrationTest-plugin     1.0           ${appserver.home}             ...   ...~/.m2/settings.xml...       appserverConfig         /path/to/appserver          appserverConfig...

当你执行该pom时,运行正常。但如果another user执行时,则运行失败,因为无法解析${appserver.home}(这是由于该properties是定义在user级别的settings.xml)。

解决方法就是把该profile放到pom.xml里定义,但这样做的缺点是所有使用该profile的pom.xml每个都要定义一次该profile。

最好的解决方法是:Since Maven provides good support for project inheritance, it’s possible to stick this sort of configuration in the pluginManagement section of a team-level POM or similar, and simply inherit the paths

第二、pom.xml里定义的profiles不符合激活条件

依然是举个例子:

pom.xml:

...       appserverConfig-dev               env      dev                  /path/to/dev/appserver              appserverConfig-dev-2               env      dev-2                  /path/to/dev/appserver2                   org.myco.plugins     spiffy-integrationTest-plugin     1.0           ${appserver.home}             ...   ...

上面定义的pom.xml定义了两个profile:不同的”env”参数值会激活不同的profile。当执行命令:

mvn -Denv=dev-2 integration-test

就会激活profile “appserverConfig-dev-2”

当执行命令:

mvn -Denv=dev integration-test

就会激活profile “appserverConfig-dev”

而当执行命令:

mvn -Denv=production integration-test

则运行失败,因为没有激活任何一个profile,因此无法解析${appserver.home}。

查看build time过程中使用了哪些Profiles

执行help plugin的active-profiles goal,使用命令:

mvn help:active-profiles

例子:

对于上面的例子,如果输入命令:

mvn help:active-profiles -Denv=dev

则输出的是:

The following profiles are active:

– appserverConfig-dev (source: pom)

如果有一个profile定义在settings.xml里并使用激活,那么输入命令:

mvn help:active-profiles

则输出的是:

The following profiles are active:

– appserverConfig (source: settings.xml)

如果输入命令:

mvn help:active-profiles -P appserverConfig-dev

那么输出的是:

The following profiles are active:

– appserverConfig-dev (source: pom)

– appserverConfig (source: settings.xml)

还要高声歌唱。那歌声,一定是响遏流云的,

简述maven中的profiles

相关文章:

你感兴趣的文章:

标签云: