快速业务通道

简述maven中的profiles - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
activation> element。如:

<profiles> <profile>    <activation>     <jdk>1.4</jdk>    </activation>    ... </profile> </profiles>

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

<profiles> <profile>    <activation>     <property>      <name>debug</name>     </property>    </activation>    ... </profile> </profiles>

简述maven中的profiles(3)

时间:2011-06-25 csdn博客 totogogo

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

mvn groupId:artifactId:goal –Ddebug

<profiles> <profile>    <activation>     <property>      <name>environment</name>      <value>test</value>     </property>    </activation>    ... </profile> </profiles>

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

mvn groupId:artifactId:goal -Denvironment=test

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

<profiles> <profile>    <activation>     <os>     <name>Windows XP</name>     <family>Windows</family>     <arch>x86</arch>     <version>5.1.2600</version>    </os>      </activation> ... </profile> </profiles>

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

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

<profiles> <profile>    <activation>     <file>      <missing>target/generated-sources/axistools/wsdl2java/org/apache/maven</missing>     </file>    </activation>    ... </profile> </profiles>

简述maven中的profiles(4)

时间:2011-06-25 csdn博客 totogogo

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

第一、external properties

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

pom.xml:

<project> ... <build>    <plugins>     <plugin>      <groupId>org.myco.plugins</groupId>      <artifactId>spiffy-integrationTest-plugin</artifactId>      <version>1.0</version>      <configuration>       <appserverHome>${appserver.home}</appserverHome>      </configuration>     </plugin>     ...    </plugins> </build> ... </project> ~/.m2/settings.xml <settings> ... <profiles>    <profile>     <id>appserverConfig</id>     <properties>      <appserver.home>/path/to/appserver</appserver.home>     </properties>    </profile> &l

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号